Commit 9d5f6f2c authored by Godefroid Chapelle's avatar Godefroid Chapelle

GHA: more workflows in sequence

parent 2713c8d6
name: Centos containers
on:
push:
paths-ignore:
- '.circleci/**'
pull_request:
workflow_run:
workflows:
- "Ubuntu 3.8"
types:
- completed
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
if: (github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && (github.event.workflow_run.conclusion == 'success'))
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
fail-fast: false
matrix:
......
name: Debian container with system Python
on:
push:
paths-ignore:
- '.circleci/**'
pull_request:
workflow_run:
workflows:
- "Ubuntu 3.8"
types:
- completed
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
if: (github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && (github.event.workflow_run.conclusion == 'success'))
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
fail-fast: false
matrix:
......
name: Debian containers
on:
push:
paths-ignore:
- '.circleci/**'
pull_request:
workflow_run:
workflows:
- "Ubuntu 3.8"
types:
- completed
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
if: (github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && (github.event.workflow_run.conclusion == 'success'))
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
fail-fast: false
matrix:
......
name: Script generation
on:
push:
paths-ignore:
- '.circleci/**'
workflow_run:
workflows:
- "Ubuntu 3.8"
types:
- completed
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
if: (github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && (github.event.workflow_run.conclusion == 'success'))
runs-on: ubuntu-latest
strategy:
max-parallel: 4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment