[CI] Test against v1.14 #516

Merged
techknowlogick merged 2 commits from 6543/go-sdk:test-against-v1.14.x into release/v0.14 2021-05-07 20:16:25 +00:00
2 changed files with 7 additions and 7 deletions

View File

@ -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/

View File

@ -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: