From e7b3d2f1c01386833ae32423a022d7558659e3ff Mon Sep 17 00:00:00 2001 From: Marc Hanheide Date: Mon, 10 Jun 2024 16:13:14 +0100 Subject: [PATCH] dev container build fix --- .github/workflows/dev-container.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev-container.yml b/.github/workflows/dev-container.yml index f2c6c0c..03e949c 100644 --- a/.github/workflows/dev-container.yml +++ b/.github/workflows/dev-container.yml @@ -11,6 +11,11 @@ on: jobs: build_devcontainer: runs-on: ubuntu-latest + strategy: + matrix: + config: + - default + - cuda-opengl steps: - name: Checkout from github uses: actions/checkout@v3 @@ -23,6 +28,7 @@ jobs: uses: devcontainers/ci@v0.3 with: imageName: lcas.lincoln.ac.uk/devcontainer/${{ steps.docker_image_name.outputs.docker_image }} + configFile: ./.devcontainer/${{ matrix.config }}/devcontainer.json push: never - imageTag: ${{ env.BRANCH }} + imageTag: ${{ matrix.config }}-${{ env.BRANCH }} #runCmd: "bash .devcontainer/run-ci.sh" \ No newline at end of file