Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/binary-gems.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- platform: "x86_64-darwin"
- platform: "arm64-darwin"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -53,7 +53,7 @@ jobs:
run: bundle exec rake gem:native:${{ matrix.platform }}

- name: Upload binary gem
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: binary-gem-${{ matrix.platform }}
path: pkg/*.gem
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
env:
PGVERSION: ${{ matrix.PGVERSION }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up Ruby
if: matrix.platform != 'x86-mingw32'
uses: ruby/setup-ruby-pkgs@v1
Expand All @@ -123,7 +123,7 @@ jobs:
echo "C:/msys64/$env:MSYSTEM_PREFIX/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Download gem from build job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: binary-gem-${{ matrix.platform }}

Expand Down Expand Up @@ -200,9 +200,9 @@ jobs:

runs-on: ${{ matrix.os || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download gem-${{ matrix.gem_platform }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: binary-gem-${{ matrix.gem_platform }}
- name: Build image and Run tests
Expand All @@ -221,9 +221,9 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download gem-${{ matrix.gem_platform }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: binary-gem-${{ matrix.gem_platform }}
- name: Build image and Run tests
Expand All @@ -244,9 +244,9 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download gem-${{ matrix.gem_platform }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: binary-gem-${{ matrix.gem_platform }}
- name: Build image and Run tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/source-gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -30,7 +30,7 @@ jobs:
run: gem build pg.gemspec

- name: Upload source gem
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: source-gem
path: "*.gem"
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
MAKE: make -j2 V=1

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -95,7 +95,7 @@ jobs:
gcc -v

- name: Download gem from build job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: source-gem

Expand Down
Loading