Skip to content

Refactor CI workflows #19

Refactor CI workflows

Refactor CI workflows #19

Workflow file for this run

name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types: [opened, labeled, reopened, synchronize]
push:
branches:
- "trunk-*"
workflow_dispatch:
jobs:
start_action_runners:
name: Start
uses: glotzerlab/jetstream2-admin/.github/workflows/start.yaml@a862161adac42e4173f3d142ebd4ddfcde54779b
secrets: inherit
typical:
name: "${{ join(matrix.config, '_') }}"
needs: start_action_runners
uses: ./.github/workflows/build_and_test.yaml
with:
config: ${{ join(matrix.config, '_') }}
container_prefix: ${{ matrix.config[0] }}
# Use self-hosted runners or fall back to GitHub hosted runners when self-hosted are offline
build_runner: ${{ needs.start_action_runners.outputs.active == "0" && toJson("ubuntu-latest") || toJson([self-hosted,jetstream2,CPU]) }}

Check failure on line 31 in .github/workflows/tests_new.yaml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/tests_new.yaml (Line: 31, Col: 21): Unexpected symbol: '"0"'. Located at position 46 within expression: needs.start_action_runners.outputs.active == "0" && toJson("ubuntu-latest") || toJson([self-hosted,jetstream2,CPU]) .github/workflows/tests_new.yaml (Line: 79, Col: 21): Unexpected symbol: '"0"'. Located at position 46 within expression: needs.start_action_runners.outputs.active == "0" && toJson("ubuntu-latest") || toJson([self-hosted,jetstream2,CPU])
# Default to ubuntu-latest when unset
test_runner: ${{ matrix.test_runner == '' && 'ubuntu-latest' || toJson(matrix.test_runner) }}
test_docker_options: ${{ matrix.test_docker_options }}
# Default to false when unset
validate: ${{ matrix.validate == '' && 'false' || matrix.validate }}
strategy:
fail-fast: false
matrix:
include:
- config: [clang14_py311, mpi, tbb, llvm]
validate: 'true'
- config: [gcc13_py312]
validate: 'true'
- config: [cuda120_gcc11_py310, mpi, llvm]
test_runner: [self-hosted,GPU]
test_docker_options: '--gpus=all --device /dev/nvidia0 --device /dev/nvidia1 --device /dev/nvidia-uvm --device /dev/nvidia-uvm-tools --device /dev/nvidiactl'
validate: 'true'
- config: [cuda120_gcc11_py310]
test_runner: [self-hosted,GPU]
test_docker_options: '--gpus=all --device /dev/nvidia0 --device /dev/nvidia1 --device /dev/nvidia-uvm --device /dev/nvidia-uvm-tools --device /dev/nvidiactl'
validate: 'true'
- config: [gcc13_py312, nomd]
- config: [gcc13_py312, nohpmc]
- config: [gcc13_py312, nomd, nohpmc]
- config: [cuda120_gcc11_py310, mpi, llvm, debug]
test_runner: [self-hosted,GPU]
test_docker_options: '--gpus=all --device /dev/nvidia0 --device /dev/nvidia1 --device /dev/nvidia-uvm --device /dev/nvidia-uvm-tools --device /dev/nvidiactl'
- config: [gcc9_py39]
release:
if: ${{ contains(github.event.pull_request.labels.*.name, 'release') }}
name: "${{ join(matrix.config, '_') }}"
needs: start_action_runners
uses: ./.github/workflows/build_and_test.yaml
with:
config: ${{ join(matrix.config, '_') }}
container_prefix: ${{ matrix.config[0] }}
# Use self-hosted runners or fall back to GitHub hosted runners when self-hosted are offline
build_runner: ${{ needs.start_action_runners.outputs.active == "0" && toJson("ubuntu-latest") || toJson([self-hosted,jetstream2,CPU]) }}
# Default to ubuntu-latest when unset
test_runner: ${{ matrix.test_runner == '' && 'ubuntu-latest' || toJson(matrix.test_runner) }}
test_docker_options: ${{ matrix.test_docker_options }}
# Default to false when unset
validate: ${{ matrix.validate == '' && 'false' || matrix.validate }}
strategy:
fail-fast: false
matrix:
include:
- config: [clang18_py312, mpi]
- config: [clang17_py312, mpi]
- config: [clang16_py312, mpi, llvm]
- config: [clang15_py312, mpi, llvm]
- config: [clang13_py310, llvm]
- config: [clang12_py310, llvm]
- config: [clang11_py310, llvm]
- config: [gcc14_py312]
- config: [gcc12_py311]
- config: [gcc11_py310]
- config: [gcc10_py310]
- config: [cuda118_gcc11_py310, mpi, llvm]
test_runner: [self-hosted,GPU]
test_docker_options: '--gpus=all --device /dev/nvidia0 --device /dev/nvidia1 --device /dev/nvidia-uvm --device /dev/nvidia-uvm-tools --device /dev/nvidiactl'
- config: [cuda117_gcc11_py310, mpi, llvm]
test_runner: [self-hosted,GPU]
test_docker_options: '--gpus=all --device /dev/nvidia0 --device /dev/nvidia1 --device /dev/nvidia-uvm --device /dev/nvidia-uvm-tools --device /dev/nvidiactl'
tests_complete:
name: Unit test
if: always()
needs: [typical]
runs-on: ubuntu-latest
steps:
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
- name: Done
run: exit 0