Skip to content

FIX: minor readme info #3

FIX: minor readme info

FIX: minor readme info #3

name: ubuntu-build-and-test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build-container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container
run: docker build -t ghcr.io/ibois-epfl/augmented-carpentry-ubuntu-testsuite:latest ${{ github.workspace }}/tests/dockerfiles/ubuntu
- name: Push
run: docker push ghcr.io/ibois-epfl/augmented-carpentry-ubuntu-testsuite:latest
configure-and-build-test:
needs: build-container
runs-on: ubuntu-latest
container:
image: ghcr.io/ibois-epfl/augmented-carpentry-ubuntu-testsuite:latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
submodules: true
- name: Configure
run: |
git config --global --add safe.directory ${PWD}
cmake . -B build/ -DHEADLESS_TEST=ON -DDEPLOY_ON_TOUCH=OFF
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: configure-artifacts
path: build/
retention-days: 1
- name: Build and run test
run: cmake --build build