Move system testing and Openresty build to GitHub Actions #3
Workflow file for this run
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: System Testing | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.ref_name }}-system-testing | |
cancel-in-progress: true | |
jobs: | |
system-testing: | |
name: System Testing | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: '.python-version' | |
cache: 'pip' | |
- name: Install Dependencies | |
run: pip install -r test/requirements.ci.txt | |
shell: bash | |
- name: Run System Testing | |
run: ./ci/system_testing.sh | |
shell: bash | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-log | |
path: ./test-log |