Skip to content

Using submodules instead of git-lfs #21

Using submodules instead of git-lfs

Using submodules instead of git-lfs #21

name: "Configure and build"
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:latest ${{ github.workspace }}/tests/dockerfiles/ubuntu
- name: Push
run: docker push ghcr.io/ibois-epfl/augmented-carpentry-ubuntu:latest
configure-and-build:
needs: build-container
runs-on: ubuntu-latest
container:
image: ghcr.io/ibois-epfl/augmented-carpentry-ubuntu:latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
submodules: true
- name: Configure
run: cmake -B build . -DAC_SYNC_GIT_SUBMODULES:BOOL=OFF
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: configure-artifacts
path: build/
retention-days: 1
- name: Build
run: cmake --build build