Skip to content

Commit

Permalink
fix target platforms in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cgytrus committed Jun 21, 2024
1 parent e3c76c6 commit 7f37752
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ jobs:
out_paths: './target/release/geode.exe'
static: ''
id: win
target: stable-x86_64-pc-windows-msvc
target: x86_64-pc-windows-msvc

- name: "macOS"
os: macos-12
out_paths: './target/release/geode'
static: 'export OPENSSL_STATIC=1'
id: mac
target: stable-x86_64-apple-darwin
target: x86_64-apple-darwin

- name: "linux"
os: ubuntu-latest
out_paths: './target/release/geode'
# some stupid old ubuntu versions cant install libssl3
static: 'export OPENSSL_STATIC=1'
id: linux
target: stable-x86_64-unknown-linux-gnu
target: x86_64-unknown-linux-gnu

name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
Expand Down

0 comments on commit 7f37752

Please sign in to comment.