summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-21 10:29:02 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-07-21 10:50:19 -0700
commit83605bb6149ec65b670dac4fcd3afa3fb2e67114 (patch)
treedcf36e12c99e3ed559a9b06faa1bdd62022f2fd8 /.github
parent25267fdd69edc29fe0dc32745549f94a37e7485c (diff)
Just assume rustc is in the container
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8105
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/compilers.yml12
1 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index a8e417f9a6..ee9fda6959 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -202,9 +202,9 @@ jobs:
# - { name: VM_DEBUG_BP_CHECK, env: { cppflags: '-DVM_DEBUG_BP_CHECK' } }
# - { name: VM_DEBUG_VERIFY_METHOD_CACHE, env: { cppflags: '-DVM_DEBUG_VERIFY_METHOD_CACHE' } }
- - { name: enable-yjit, env: { append_configure: '--enable-yjit --disable-rjit' }, rust: true }
+ - { name: enable-yjit, env: { append_configure: '--enable-yjit --disable-rjit' } }
- { name: enable-rjit, env: { append_configure: '--enable-rjit --disable-yjit' } }
- - { name: YJIT_FORCE_ENABLE, env: { cppflags: '-DYJIT_FORCE_ENABLE' }, rust: true }
+ - { name: YJIT_FORCE_ENABLE, env: { cppflags: '-DYJIT_FORCE_ENABLE' } }
# - { name: RJIT_FORCE_ENABLE, env: { cppflags: '-DRJIT_FORCE_ENABLE' } }
name: ${{ matrix.entry.name }}
@@ -239,14 +239,6 @@ jobs:
builddir: build
makeup: true
- - name: Install Rust
- if: ${{ matrix.entry.rust }}
- run: |
- command -v rustc ||
- {
- sudo apt-get update && sudo apt install -y rustc
- }
-
- name: Run configure
run: >
../src/configure -C ${default_configure} ${append_configure}