docker: Updated Ubuntu from 20.04 to 22.04 #947
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: Check Self | |
on: | |
pull_request: | |
types: | |
- synchronize | |
- opened | |
workflow_dispatch: | |
merge_group: | |
push: | |
branches: | |
- master | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build tester image | |
run: | | |
sudo chmod a+rwx -R libs/gl-client-py | |
make docker-image | |
- name: Rust Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
/tmp/gltesting/cargo | |
/tmp/gltesting/target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Check Self | |
run : | | |
PYTEST_OPTS='-n 8' make docker-check-self | |
- name: Run python image | |
run : | | |
PYTEST_OPTS='-n 8' make docker-check-py |