diff --git a/.drone.yml b/.drone.yml index 26ab14a..d5afd7b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,7 +12,7 @@ workspace: steps: - name: gitea - image: gitea/gitea:1.14.0-rc1 + image: gitea/gitea:1.14 detach: true commands: - mkdir -p /tmp/conf/ diff --git a/Makefile b/Makefile index 48140c6..546ad4b 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ GITEA_SDK_TEST_USERNAME ?= test01 GITEA_SDK_TEST_PASSWORD ?= test01 -GITEA_DL := https://dl.gitea.io/gitea/master/gitea-master- +GITEA_DL := https://dl.gitea.io/gitea/1.14/gitea-1.14- UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Linux) GITEA_DL := $(GITEA_DL)linux- @@ -81,8 +81,8 @@ test: test-instance: rm -f -r ${WORK_DIR}/test 2> /dev/null; \ mkdir -p ${WORK_DIR}/test/conf/ ${WORK_DIR}/test/data/ - wget ${GITEA_DL} -O ${WORK_DIR}/test/gitea-master; \ - chmod +x ${WORK_DIR}/test/gitea-master; \ + wget ${GITEA_DL} -O ${WORK_DIR}/test/gitea-1.14; \ + chmod +x ${WORK_DIR}/test/gitea-1.14; \ echo "[security]" > ${WORK_DIR}/test/conf/app.ini; \ echo "INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE1NTg4MzY4ODB9.LoKQyK5TN_0kMJFVHWUW0uDAyoGjDP6Mkup4ps2VJN4" >> ${WORK_DIR}/test/conf/app.ini; \ echo "INSTALL_LOCK = true" >> ${WORK_DIR}/test/conf/app.ini; \ @@ -94,9 +94,9 @@ test-instance: echo "ROOT = ${WORK_DIR}/test/data/" >> ${WORK_DIR}/test/conf/app.ini; \ echo "[server]" >> ${WORK_DIR}/test/conf/app.ini; \ echo "ROOT_URL = ${GITEA_SDK_TEST_URL}" >> ${WORK_DIR}/test/conf/app.ini; \ - ${WORK_DIR}/test/gitea-master migrate -c ${WORK_DIR}/test/conf/app.ini; \ - ${WORK_DIR}/test/gitea-master admin user create --username=${GITEA_SDK_TEST_USERNAME} --password=${GITEA_SDK_TEST_PASSWORD} --email=test01@gitea.io --admin=true --must-change-password=false --access-token -c ${WORK_DIR}/test/conf/app.ini; \ - ${WORK_DIR}/test/gitea-master web -c ${WORK_DIR}/test/conf/app.ini + ${WORK_DIR}/test/gitea-1.14 migrate -c ${WORK_DIR}/test/conf/app.ini; \ + ${WORK_DIR}/test/gitea-1.14 admin user create --username=${GITEA_SDK_TEST_USERNAME} --password=${GITEA_SDK_TEST_PASSWORD} --email=test01@gitea.io --admin=true --must-change-password=false --access-token -c ${WORK_DIR}/test/conf/app.ini; \ + ${WORK_DIR}/test/gitea-1.14 web -c ${WORK_DIR}/test/conf/app.ini .PHONY: bench bench: