Skip to content

Commit

Permalink
use musl for linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
usamoi committed Dec 22, 2024
1 parent 56af59f commit 4141830
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/upload-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
matrix:
include:
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
target: x86_64-unknown-linux-musl
pkg_fmt: .tar.gz
binary_ext: ''
binary_ext: ""
- os: macos-13
target: x86_64-apple-darwin
pkg_fmt: .tar.gz
binary_ext: ''
binary_ext: ""
- os: macos-14
target: aarch64-apple-darwin
pkg_fmt: .tar.gz
binary_ext: ''
binary_ext: ""
- os: windows-2022
target: x86_64-pc-windows-msvc
pkg_fmt: .zip
Expand All @@ -44,7 +44,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
shell: bash
run: |
cargo build -p cargo-pgrx --bin cargo-pgrx --target ${{ matrix.target }} --release
cargo build -p cargo-pgrx --bin cargo-pgrx --features cargo-edit/vendored-openssl --target ${{ matrix.target }} --release
mkdir -p build
cp README.md ./build/
Expand Down

0 comments on commit 4141830

Please sign in to comment.