diff options
author | Jeremy Evans <[email protected]> | 2023-10-30 16:52:25 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2023-10-31 05:12:07 +0000 |
commit | d22767fd482aca2f2b9fb4f0bcf6d845f990fefd (patch) | |
tree | e5847d5983e786fbe9d432c0c1081ea58b66f3ee | |
parent | 4adf418be963b3554962b2f27057be81486c57d9 (diff) |
Add a --disable-yjit job for Ubuntu CI
Currently, we do not have an amd64 job that runs with YJIT disabled
and runs the full check task. Most amd64 jobs implicitly have YJIT
enabled, even though --enable-yjit was not specified. This makes it
easier to determine whether a problem is YJIT-related or not by
reviewing CI logs.
-rw-r--r-- | .github/workflows/ubuntu.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index e701a98515..fa9eb9fef6 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -37,6 +37,8 @@ jobs: - test_task: check arch: i686 - test_task: check + configure: '--disable-yjit' + - test_task: check configure: '--enable-shared --enable-load-relative' - test_task: test-all TESTS=--repeat-count=2 - test_task: test-all |