Merge branch 'develop' into bugfix/windows-ninja #2189
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
name: double precision build and test with GCC+TPLs (no GPUs) | |
on: | |
push: | |
pull_request: | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/llnl/sundials-ci-int${{ matrix.indexsize }}-${{ matrix.precision }}:latest | |
options: --user root | |
strategy: | |
matrix: | |
indexsize: [32, 64] | |
precision: ['double'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Run test_driver.sh | |
uses: ./.github/actions/test-driver | |
with: | |
indexsize: ${{ matrix.indexsize }} | |
precision: ${{ matrix.precision }} | |
- name: Archive files from failed build | |
uses: actions/[email protected] | |
if: failure() | |
with: | |
name: build_files | |
path: | | |
${{ github.workspace }}/test/build_* |