Skip to content

Commit c7606c8

Browse files
committed
No need for the dirty check in cross containers
1 parent f56295a commit c7606c8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/clanker_cross.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
include:
3030
- arch: i386
3131
distro: debian:bookworm
32-
install: apt-get update && apt-get install -y build-essential git clang
32+
install: apt-get update && apt-get install -y build-essential clang
3333
- arch: aarch64
3434
distro: ubuntu:22.04
35-
install: apt-get update && apt-get install -y build-essential git clang
35+
install: apt-get update && apt-get install -y build-essential clang
3636
steps:
3737
- uses: actions/checkout@v4
3838
- uses: docker/setup-qemu-action@v3
@@ -47,6 +47,5 @@ jobs:
4747
${{ matrix.install }} &&
4848
touch ffc.h &&
4949
make test &&
50-
make example &&
51-
git diff --exit-code ffc.h
50+
make example
5251
"

0 commit comments

Comments
 (0)