From 3ef5653a46f98ff8c305caf5c20a3a5356639b5d Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Thu, 2 Mar 2023 12:46:39 -0600 Subject: [PATCH] Remove --dev from tests that have own settings Many of these tests were passing --dev to test runs that should be running our JIT or using indy. This effectively prevented those jobs from actually using the JIT. This is likely an mistake made when combining similar jobs to simplify the workflow. --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 078489222d9..baffd9db0f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake ${{ matrix.target }} - run: bin/jruby --dev -S rake ${{ matrix.target }} + run: bin/jruby -S rake ${{ matrix.target }} rake-test-8: runs-on: ubuntu-latest @@ -81,7 +81,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake ${{ matrix.target }} - run: bin/jruby --dev -S rake ${{ matrix.target }} + run: bin/jruby -S rake ${{ matrix.target }} jruby-tests-dev: runs-on: ubuntu-latest @@ -156,7 +156,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake ${{ matrix.target }} - run: bin/jruby --dev -S rake ${{ matrix.target }} + run: bin/jruby -S rake ${{ matrix.target }} mvn-test: runs-on: ubuntu-latest @@ -266,7 +266,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake spec:ji - run: bin/jruby --dev -S rake spec:ji + run: bin/jruby -S rake spec:ji regression-specs-jit: runs-on: ubuntu-latest @@ -301,7 +301,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake spec:regression - run: bin/jruby --dev -S rake spec:regression + run: bin/jruby -S rake spec:regression mvn-test-windows: runs-on: windows-latest @@ -341,7 +341,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake test:jruby - run: bin/jruby --dev -S rake test:jruby TESTOPTS="--no-show-detail-immediately" + run: bin/jruby -S rake test:jruby TESTOPTS="--no-show-detail-immediately" env: JRUBY_OPTS: '' - name: mvn -P test @@ -549,7 +549,7 @@ jobs: - name: bundle install run: bin/jruby --dev -S bundle install - name: rake ${{ matrix.target }} -# run: "bin/jruby --dev -S rake ${{ matrix.target }}" +# run: "bin/jruby -S rake ${{ matrix.target }}" run: "true" maven-test-openj9-8: @@ -617,7 +617,7 @@ jobs: run: bin/jruby --dev -S bundle install - name: rake ${{ matrix.target }} continue-on-error: true - run: "bin/jruby --dev -S rake ${{ matrix.target }}" + run: "bin/jruby -S rake ${{ matrix.target }}" - run: true publish-snapshot: