refactor: using docker to execute CI tests on Github actions to prevent environmental breaking changes #197
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run GoTest | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
concurrency: | |
group: test-arm64-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test ARM64 | |
runs-on: arm64_runner | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install System Dependencies | |
run: sudo apt-get install -y pkg-config gcc libseccomp-dev | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.6 | |
- name: Install dependencies | |
run: go mod tidy | |
- name: Compile library | |
run: bash ./build/build_arm64.sh | |
- name: Setup Nodejs20.11.1 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.11.1' | |
- name: Setup Python3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Link Python3.10 | |
run: sudo ln -sf "$(which python3.10)" /usr/local/bin/python3 | |
- name: Install Python dependencies | |
run: pip install httpx==0.27.2 requests==2.32.3 jinja2==3.0.3 | |
- name: Link Go | |
run: sudo ln -s "$(which go)" /usr/local/bin/go | |
- name: Run Intgeration tests | |
run: sudo go test -timeout 120s -v ./tests/integration_tests/... | |
env: | |
PYTHON_PATH: /usr/bin/python3.10 |