Skip to content

Commit

Permalink
Disable other tests and builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Nov 4, 2024
1 parent 739d718 commit 52584a7
Showing 1 changed file with 27 additions and 21 deletions.
48 changes: 27 additions & 21 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:
- build_base

# run this job even if build_base did not run
if: ${{ ! cancelled() && (needs.build_base.result == 'success' || needs.build_base.result == 'skipped') }}
# FIXME revert this!
# if: ${{ ! cancelled() && (needs.build_base.result == 'success' || needs.build_base.result == 'skipped') }}
if: false

strategy:
matrix:
Expand Down Expand Up @@ -307,7 +309,9 @@ jobs:
- build

# run this job even if build_base did not run
if: ${{ ! cancelled() && needs.build.result == 'success' }}
# FIXME revert this!
# if: ${{ ! cancelled() && needs.build.result == 'success' }}
if: ${{ always() }}

strategy:
matrix:
Expand All @@ -316,27 +320,29 @@ jobs:
- name: cuda
image: nvcc
runner: [self-hosted, cuda]
# run OpenMP tests on Azure server
- name: openmp
image: gcc
runner: ubuntu-latest
# run Threads tests on Azure server
- name: threads
image: gcc
runner: ubuntu-latest
# run Serial tests on Azure server
- name: serial
image: gcc
runner: ubuntu-latest
# FIXME revert this!
# # run OpenMP tests on Azure server
# - name: openmp
# image: gcc
# runner: ubuntu-latest
# # run Threads tests on Azure server
# - name: threads
# image: gcc
# runner: ubuntu-latest
# # run Serial tests on Azure server
# - name: serial
# image: gcc
# runner: ubuntu-latest

steps:
- name: Get artifacts
uses: actions/download-artifact@v4
with:
name: tests_${{ matrix.backend.name }}

- name: Deploy artifacts
run: tar -xvf tests_${{ matrix.backend.name }}.tar
# FIXME revert this!
# - name: Get artifacts
# uses: actions/download-artifact@v4
# with:
# name: tests_${{ matrix.backend.name }}
#
# - name: Deploy artifacts
# run: tar -xvf tests_${{ matrix.backend.name }}.tar

- name: Login in GitHub Containers Repository with Singularity
run: |
Expand Down

0 comments on commit 52584a7

Please sign in to comment.