From 9b230febb174805238ce1c958aba897fc1fd1a24 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 19 Jan 2024 15:15:08 +0900 Subject: [PATCH 1/2] Ignore jar artifact --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index fed7411c..87ba6fa3 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,6 @@ tags tmp target lib/java/racc/cparse-jruby.jar +lib/racc/cparse-jruby.jar Gemfile.lock html From eb7eef4f97f3e35af0ed8a670a83dda74cb8e18c Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 19 Jan 2024 15:15:25 +0900 Subject: [PATCH 2/2] Don't use bundle exec to avoid warning of Ruby 3.3 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2f6496e0..7a72e185 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,6 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} - bundler-cache: true - - run: bundle exec rake compile test - - run: bundle exec rake build + - run: bundle install --jobs 4 --retry 3 + - run: rake test + - run: rake build