You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI: Add missing JIT system emulation test on macOS
PR #569 introduced the macOS CI runner following PR #521 but forgot to
include the JIT system emulation verification test. This commit adds the
missing test.
Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -480,6 +480,14 @@ jobs:
480
480
bash -c "${BOOT_LINUX_TEST}"
481
481
make ENABLE_SYSTEM=1 clean
482
482
if: ${{ always() }}
483
+
- name: boot Linux kernel test (JIT)
484
+
env:
485
+
CC: ${{ steps.install_cc.outputs.cc }}
486
+
run: |
487
+
make distclean && make INITRD_SIZE=32 ENABLE_SYSTEM=1 ENABLE_JIT=1 ENABLE_T2C=0 ENABLE_MOP_FUSION=0 $PARALLEL && make ENABLE_SYSTEM=1 artifact $PARALLEL
488
+
bash -c "${BOOT_LINUX_TEST}"
489
+
make ENABLE_SYSTEM=1 ENABLE_JIT=1 ENABLE_T2C=0 ENABLE_MOP_FUSION=0 clean
0 commit comments