mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-06 06:53:39 +00:00
Try different path for coverage md, use buildkit
This commit is contained in:
parent
f6afd59bbf
commit
608a009fa2
2 changed files with 6 additions and 3 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: uvm32
|
path: uvm32
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make dockerbuild && make docker
|
run: make dockerbuild_cached && make docker
|
||||||
working-directory: uvm32
|
working-directory: uvm32
|
||||||
- name: Code Coverage Report
|
- name: Code Coverage Report
|
||||||
uses: irongut/CodeCoverageSummary@v1.3.0
|
uses: irongut/CodeCoverageSummary@v1.3.0
|
||||||
|
|
@ -32,5 +32,5 @@ jobs:
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: code-coverage-report
|
name: code-coverage-report
|
||||||
path: uvm32/test/code-coverage-results.md
|
path: code-coverage-results.md
|
||||||
|
|
||||||
|
|
|
||||||
5
Makefile
5
Makefile
|
|
@ -17,7 +17,10 @@ distrib: all
|
||||||
cp apps/*/*.bin precompiled/
|
cp apps/*/*.bin precompiled/
|
||||||
|
|
||||||
dockerbuild:
|
dockerbuild:
|
||||||
docker build -t uvm32 . --no-cache
|
DOCKER_BUILDKIT=1 docker build -t uvm32 . --no-cache
|
||||||
|
|
||||||
|
dockerbuild_cached:
|
||||||
|
DOCKER_BUILDKIT=1 docker build -t uvm32 .
|
||||||
|
|
||||||
dockershell:
|
dockershell:
|
||||||
docker run -v `pwd`:/data -w /data --rm -ti uvm32 /bin/bash
|
docker run -v `pwd`:/data -w /data --rm -ti uvm32 /bin/bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue