Skip to content

Commit

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

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

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

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

strategy:
matrix:
Expand All @@ -320,29 +316,27 @@ jobs:
- name: cuda
image: nvcc
runner: [self-hosted, cuda]
# 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
# 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:
# 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: 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 dd7c8de

Please sign in to comment.