Skip to content

Commit

Permalink
Merge branch 'develop' into alexanderrichards-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrichards authored Oct 16, 2023
2 parents 4fa602e + 1866dce commit 10d2de8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci_push_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
if: startsWith(github.head_ref, 'autopep8-patches') == false && needs.lint.outputs.files_to_lint != ''
runs-on: ubuntu-latest
needs: lint
if: always() && !failure() && !cancelled()
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -101,7 +102,7 @@ jobs:
core-unit:
name: GangaCore Unit
needs: lint
if: failure()
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -126,6 +127,7 @@ jobs:
core-integration:
name: GangaCore Integration
needs: core-unit
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest

steps:
Expand All @@ -147,6 +149,7 @@ jobs:
gui:
name: GangaGUI tests
needs: lint
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -167,6 +170,7 @@ jobs:
condor:
name: Condor
needs: lint
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
container: htcondor/mini:el7
steps:
Expand Down Expand Up @@ -197,6 +201,7 @@ jobs:
dirac-unit:
name: GangaDirac Unit
needs: lint
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
container: centos:7
steps:
Expand Down Expand Up @@ -246,6 +251,7 @@ jobs:
dirac-integration:
name: GangaDirac Integration
needs: dirac-unit
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
container: centos:7
steps:
Expand Down Expand Up @@ -304,6 +310,7 @@ jobs:
lhcb-unit:
name: GangaLHCb Unit
needs: lint
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
container:
image: centos:7
Expand Down Expand Up @@ -337,6 +344,7 @@ jobs:
lhcb-integration:
name: GangaLHCb Integration
needs: lhcb-unit
if: always() && !failure() && !cancelled()
runs-on: ubuntu-latest
container:
image: centos:7
Expand Down

0 comments on commit 10d2de8

Please sign in to comment.