Files
sshwifty-udp-telnet-http/.github/workflows/workflow.yml
2020-07-29 10:42:36 +08:00

37 lines
1.2 KiB
YAML

name: Sshwifty-CI
on:
push:
branches: [master, dev]
tags: ["**-release"]
pull_request:
jobs:
CI:
runs-on: ubuntu-20.04
steps:
- name: Checking out source code
uses: actions/checkout@v2
with:
fetch-depth: 50
- name: Run CI
run: |
export GITHUB_USER="${{ github.repository_owner }}"
export GITHUB_USER_TOKEN="${{ secrets.GITHUB_TOKEN }}"
export DOCKER_HUB_PASSWORD="${{ secrets.DOCKER_HUB_PASSWORD }}"
export COVERALLS_TOKEN="${{ secrets.COVERALLS_TOKEN }}"
export DOCKER_HUB_USER="${{ github.repository_owner }}"
# The `DOCKER_NPM_REGISTRY` is here due to problematic build process
# for ARM64 Docker Image caused by Docker/QEMU
export DOCKER_NPM_REGISTRY="http://registry.npmjs.org/"
sudo apt-get update -qq -y
sudo apt-get upgrade -qq -y
sudo apt-get install -qq -y qemu qemu-user-static binfmt-support
sudo systemctl restart docker
cp ./.ci.sh ./.github-action-ci-script.sh && chmod +x ./.github-action-ci-script.sh && ./.github-action-ci-script.sh && rm ./.github-action-ci-script.sh