diff options
Diffstat (limited to '.github/workflows/os_comp.yml')
| -rw-r--r-- | .github/workflows/os_comp.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/os_comp.yml b/.github/workflows/os_comp.yml index a0877fdbc..f31bf5da5 100644 --- a/.github/workflows/os_comp.yml +++ b/.github/workflows/os_comp.yml @@ -35,13 +35,15 @@ jobs: fail-fast: false matrix: cfg: - - { name: Arch Linux, id: arch } - - { name: Fedora, id: fedora } - - { name: OpenSUSE, id: opensuse } + - { name: Arch Linux, id: arch } + - { name: CUDA (on Arch), id: cuda } + - { name: Fedora, id: fedora } + - { name: OpenSUSE, id: opensuse } container: mesonbuild/${{ matrix.cfg.id }}:latest steps: - uses: actions/checkout@v1 - name: Run tests # All environment variables are stored inside the docker image in /ci/env_vars.sh - # They are defined in the `env` section in each image.json - run: bash -c "source /ci/env_vars.sh; cd $GITHUB_WORKSPACE; ./run_tests.py" + # They are defined in the `env` section in each image.json. CI_ARGS should be set + # via the `args` array ub the image.json + run: bash -c "source /ci/env_vars.sh; cd $GITHUB_WORKSPACE; ./run_tests.py $CI_ARGS" |
