Skip to content

IOSS: Test does not seem to work in parallel; making serial for now #700

IOSS: Test does not seem to work in parallel; making serial for now

IOSS: Test does not seem to work in parallel; making serial for now #700

Workflow file for this run

name: docker-seacas
on:
push:
branches: [ "master" ]
concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker build and push
uses: docker/build-push-action@v5
with:
context: docker/seacas
push: true
tags: mrbuche/seacas:latest
- name: Delay before pull
run: sleep 234s
test-latest:
needs: build-latest
runs-on: ubuntu-latest
container: mrbuche/seacas
steps:
- name: Docker pull and test
run: |
cd /seacas/build/ && ctest --output-on-failure && cd
cd /seacas/SEACAS-Test/ && make test && cd
python -c 'import exodus3 as exodus'