From 72cdd6bc5ebc76b653ec56306277bf819e455a41 Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Thu, 15 Feb 2024 13:26:10 +0100 Subject: [PATCH] Add ruby-3.3 to windows binary gems --- .github/workflows/binary-gems.yml | 6 +++--- Rakefile.cross | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/binary-gems.yml b/.github/workflows/binary-gems.yml index 11d6c2724..ec235f8b4 100644 --- a/.github/workflows/binary-gems.yml +++ b/.github/workflows/binary-gems.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: "3.2" + ruby-version: "3.3" - run: bundle install - name: Create a dummy cert to satisfy the build @@ -50,11 +50,11 @@ jobs: matrix: include: - os: windows-latest - ruby: "3.2" + ruby: "3.3" platform: "x64-mingw-ucrt" PGVERSION: 16.0-1-windows-x64 - os: windows-latest - ruby: "3.1.3-1" + ruby: "3.1.4-1" platform: "x86-mingw32" PGVERSION: 10.20-1-windows - os: windows-latest diff --git a/Rakefile.cross b/Rakefile.cross index d6a78e044..3a5bb0f1a 100644 --- a/Rakefile.cross +++ b/Rakefile.cross @@ -291,7 +291,7 @@ CrossLibraries.each do |xlib| RakeCompilerDock.sh <<-EOT, platform: platform (cp build/gem/gem-*.pem ~/.gem/ || true) && bundle install --local && - rake native:#{platform} pkg/#{$gem_spec.full_name}-#{platform}.gem MAKE="make -j`nproc`" RUBY_CC_VERSION=3.2.0:3.1.0:3.0.0:2.7.0:2.6.0:2.5.0 + rake native:#{platform} pkg/#{$gem_spec.full_name}-#{platform}.gem MAKE="make -j`nproc`" RUBY_CC_VERSION=3.3.0:3.2.0:3.1.0:3.0.0:2.7.0:2.6.0:2.5.0 EOT end desc "Build the windows binary gems"