Skip to content

Commit 50ec00b

Browse files
committed
use build target as defined in makefile
1 parent f2986ea commit 50ec00b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rebuild-bindings.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [windows-latest, ubuntu-latest, macos-latest]
14+
target: [x86_64-pc-windows-gnu, "x86_64-unknown-linux-gnu", "x86_64-apple-darwin"]
1415
runs-on: ${{ matrix.os }}
1516

1617
steps:
@@ -20,6 +21,7 @@ jobs:
2021
id: toolchain
2122
with:
2223
toolchain: stable
24+
target: ${{ matrix.target }}
2325
profile: minimal
2426
components: rustfmt, clippy
2527
override: true

steamworks-sys/build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
2121

2222
let triple = std::env::var("TARGET").unwrap();
2323

24-
dbg!("TARGET TRIPLE: {triple}");
25-
2624
let dylib_src = sdk_src.join("redistributable_bin").join({
2725
if triple.contains("windows") {
2826
if !triple.contains("i686") {

0 commit comments

Comments
 (0)