ops: try to get volumes mounted
This commit is contained in:
@@ -72,17 +72,17 @@ jobs:
|
|||||||
uses: https://github.com/addnab/docker-run-action@v3
|
uses: https://github.com/addnab/docker-run-action@v3
|
||||||
with:
|
with:
|
||||||
image: cproject-builder:latest
|
image: cproject-builder:latest
|
||||||
options: -v ${{ github.workspace }}:/builder/mnt --workdir /builder/mnt --volumes-from ${{ env.JOB_CONTAINER_NAME }}
|
options: --volumes-from ${{ env.JOB_CONTAINER_NAME }}
|
||||||
run: |
|
run: |
|
||||||
/bin/bash -c "rm -rf build; cmake -B build; cmake --build build"
|
/bin/bash -c "cd ${{ github.workspace }}; rm -rf build; cmake -B build; cmake --build build"
|
||||||
-
|
-
|
||||||
name: Test library
|
name: Test library
|
||||||
uses: https://github.com/addnab/docker-run-action@v3
|
uses: https://github.com/addnab/docker-run-action@v3
|
||||||
with:
|
with:
|
||||||
image: cproject-builder:latest
|
image: cproject-builder:latest
|
||||||
options: -v ${{ github.workspace }}:/builder/mnt --workdir /builder/mnt --volumes-from ${{ env.JOB_CONTAINER_NAME }}
|
options: --volumes-from ${{ env.JOB_CONTAINER_NAME }}
|
||||||
run: |
|
run: |
|
||||||
/bin/bash -c "ceedling clobber; ceedling gcov:all; ceedling utils:gcov"
|
/bin/bash -c "cd ${{ github.workspace }}/tests/unittest; ceedling clobber; ceedling gcov:all; ceedling utils:gcov"
|
||||||
-
|
-
|
||||||
name: Archive coverage results
|
name: Archive coverage results
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
Reference in New Issue
Block a user