Skip to content

Commit 0f00c40

Browse files
committed
Add Parser2 to CI
1 parent 97990b5 commit 0f00c40

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/clang.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
make -j4 COMP=clang
2626
./main.llvm.ex
2727
28+
cd ../Parser2
29+
make -j4 COMP=clang
30+
./main.llvm.ex
31+
2832
cd ../GPU
2933
make -j4 USE_CPU=TRUE COMP=clang
3034
./main.llvm.ex

.github/workflows/gcc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
make -j4
2626
./main.gnu.ex
2727
28+
cd ../Parser2
29+
make -j4
30+
./main.gnu.ex
31+
2832
cd ../GPU
2933
make -j4 USE_CPU=TRUE
3034
./main.gnu.ex

.github/workflows/intel.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
make -j4 COMP=intel
3030
./main.intel.ex
3131
32+
cd ../Parser2
33+
make -j4 COMP=intel
34+
./main.intel.ex
35+
3236
cd ../GPU
3337
make -j4 USE_CPU=TRUE COMP=intel
3438
./main.intel.ex

0 commit comments

Comments
 (0)