Skip to content

Adds MFEMObjectAction #27

Adds MFEMObjectAction

Adds MFEMObjectAction #27

Workflow file for this run

name: BuildTest
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
docker-build-test-ubuntu:
runs-on: ubuntu-latest
name: BuildTestUbuntu
env:
PRCOMMITSHA : ${{ github.event.pull_request.head.sha }}
PRREPOSITORY: ${{ github.event.pull_request.head.repo.full_name }}
steps:
# First check out the repository to get the docker file
- name: Checkout
uses: actions/checkout@v2
# Print the context for this GitHub workflow
- name: PrintGithubContext
run: echo ${PRCOMMITSHA:-$GITHUB_SHA} ${PRREPOSITORY:-$GITHUB_REPOSITORY}
# Now build in a container with all deps
- name: DockerBuildTest
run: |
docker build -t ci-platypus-ubuntu \
--build-arg build_git_sha=${PRCOMMITSHA:-$GITHUB_SHA} \
--build-arg build_git_repo=${PRREPOSITORY:-$GITHUB_REPOSITORY} \
docker/platypus