name: linux release serial
runs-on: [ubuntu-22.04]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
container:
image: dealii/dependencies:jammy
name: linux debug parallel
runs-on: [ubuntu-22.04]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
container:
image: dealii/dependencies:jammy
name: linux debug intel oneapi
runs-on: [ubuntu-22.04]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v3
name: linux debug cuda-11
runs-on: [ubuntu-20.04]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
env:
CUDA_ROOT: /usr/local/cuda
name: linux debug cuda-11 clang
runs-on: [ubuntu-20.04]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
env:
CUDA_ROOT: /usr/local/cuda
name: OSX serial
runs-on: [macos-latest]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v3
name: OSX parallel 64bit
runs-on: [macos-latest]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v3
name: tidy
runs-on: [ubuntu-22.04]
- # only run on 'push' or if the 'pull_request' is not a draft:
- if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ #
+ # The following condition only runs the workflow on 'push' or if the
+ # 'pull_request' is not a draft. This is only useful for hackathons or
+ # other situations when the CI is massively overburdened with pull
+ # requests.
+ #
+ # if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v3