Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use macos-13 to build x86_64 #459

Merged
merged 2 commits into from
Apr 26, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/buildimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ env:

jobs:
build-osx:
name: Build for Darwin
runs-on: macos-latest
name: Build for Darwin x86_64
runs-on: macos-13
steps:
- name: Install PostgreSQL@14
run: brew install --force postgresql@14
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

build-osx-arm:
name: Build for Darwin ARM64
runs-on: macos-14
runs-on: macos-latest
steps:
- name: Install PostgreSQL@14
run: brew install --force postgresql@14
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var fdwVersion = "1.11.0"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var prerelease = "rc.5"
var prerelease = "rc.6"

// FdwVersion is an instance of semver.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a
Expand Down
Loading