Skip to content

Commit 5fe721c

Browse files
committed
make things better
1 parent d584a6f commit 5fe721c

File tree

7 files changed

+11
-4
lines changed

7 files changed

+11
-4
lines changed

.github/workflows/formatting.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ jobs:
1212

1313
- name: Check formatting
1414
run: |
15+
./mfc.sh &> tmp.txt || true
1516
./mfc.sh format -j $(nproc)
1617
git diff --exit-code
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

33
. ./mfc.sh load -c f -m g
4-
./mfc.sh build -j 8 --gpu
4+
./mfc.sh test --dry-run -j 8 --gpu

.github/workflows/ice/test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ if [ "$job_device" == "gpu" ]; then
55
build_opts="--gpu"
66
fi
77

8-
9-
./mfc.sh build -j 8 $build_opts
8+
./mfc.sh test --dry-run -j 8 $build_opts
109

1110
n_test_threads=8
1211

.github/workflows/line-count.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ jobs:
4949
cd $BASE
5050
export MFC_PR=$PR
5151
pwd
52+
./mfc.sh &> tmp.txt || true
5253
./mfc.sh count_diff
5354

.github/workflows/lint-toolchain.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13+
- name: Python setup
14+
run: ./mfc.sh || true
15+
1316
- name: Lint the toolchain
1417
run: ./mfc.sh lint

.github/workflows/phoenix/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [ "$job_device" == "gpu" ]; then
55
build_opts="--gpu"
66
fi
77

8-
./mfc.sh build -j 8 $build_opts
8+
./mfc.sh test --dry-run -j 8 $build_opts
99

1010
n_test_threads=8
1111

.github/workflows/spelling.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v4
1212

13+
- name: Python setup
14+
run: ./mfc.sh || true
15+
1316
- name: Spell Check
1417
run: ./mfc.sh spelling

0 commit comments

Comments
 (0)