2022-01-11 16:51:15 +00:00
|
|
|
# version format
|
|
|
|
version: '{build}'
|
|
|
|
|
|
|
|
# branches to build
|
|
|
|
branches:
|
|
|
|
# whitelist
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
|
|
|
# Do not build on tags (GitHub, Bitbucket, GitLab, Gitea)
|
|
|
|
skip_tags: true
|
|
|
|
|
|
|
|
# Maximum number of concurrent jobs for the project
|
|
|
|
max_jobs: 1
|
|
|
|
clone_depth: 1
|
|
|
|
|
|
|
|
# Build worker image (VM template)
|
|
|
|
build_cloud: Docker
|
|
|
|
|
|
|
|
environment:
|
2022-02-16 12:16:38 +00:00
|
|
|
APPVEYOR_SSH_KEY: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBRMxhawMlUlQ8l4pOaeHsZl8XDO54WQngkYM1U/XB4m samsyn\jonatan@JonatanAMD
|
2022-01-11 16:51:15 +00:00
|
|
|
docker_image: node:16-alpine
|
|
|
|
npm_config_cache: /appveyor/projects/cache
|
|
|
|
|
|
|
|
test_script:
|
|
|
|
- sh: |
|
2022-02-18 06:24:52 +00:00
|
|
|
mkdir /lib64
|
2022-02-16 11:49:48 +00:00
|
|
|
ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
|
2022-01-27 18:32:43 +00:00
|
|
|
chmod -R 777 /appveyor/projects
|
2022-01-11 16:51:15 +00:00
|
|
|
npm install
|
|
|
|
npm test
|
2022-02-15 16:32:43 +00:00
|
|
|
npm run test:integration
|
2022-02-16 12:16:38 +00:00
|
|
|
|
2022-02-18 06:24:52 +00:00
|
|
|
deploy_script:
|
|
|
|
- sh |
|
|
|
|
CURR_VER=$(npm view package.json version)
|
|
|
|
if curl -s -X GET -H "token: $deploytoken" https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases | grep -o "\"name\"\:\"v${CURR_VER}\"" > /dev/null; then
|
|
|
|
echo "Release already exists, nothing to do.";
|
|
|
|
else
|
|
|
|
./test/7zas a -mx9 "${CURR_VER}_sc-core.7z" package.json index.mjs cli.mjs core bin
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2022-02-16 12:16:38 +00:00
|
|
|
on_finish:
|
2022-02-16 12:19:35 +00:00
|
|
|
- sh: |
|
2022-02-18 06:24:52 +00:00
|
|
|
YELLOW='\033[0;33m'
|
|
|
|
NC='\033[0m'
|
|
|
|
LOCK_FILE="${HOME}/build.lock"
|
|
|
|
export APPVEYOR_SSH_BLOCK=true
|
|
|
|
touch "${LOCK_FILE}"
|
|
|
|
echo -e "Build paused. To resume it, open a bash session to run '${YELLOW}rm \"${LOCK_FILE}\"${NC}' command."
|