Skip to content

Don't cancel at top level #23

Don't cancel at top level

Don't cancel at top level #23

name: staged-continuous-integration
on:
push:
branches:
- develop
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]
#concurrency:
# group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: ${{github.event_name == 'pull_request'}}
permissions: read-all
jobs:
# pre-stage
clang-format-check:
uses: ./.github/workflows/clang-format-check.yml
# codeql:
# permissions:
# # required for all workflows
# security-events: write
# # only required for workflows in private repositories
# actions: read
# contents: read
# uses: ./.github/workflows/codeql.yml
initial-check:
uses: ./.github/workflows/continuous-integration-snifftest.yml
# primary testing
windows-cuda:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-windows.yml
standard-linux:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-linux.yml
hpx-linux:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-linux-hpx.yml
linux-32bit:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-linux-32bit.yml
osx:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-osx.yml
performance-test:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/performance-benchmark.yml