Skip to content

Commit 46dc23e

Browse files
authored
Merge df1dc30 into 5cc119d
2 parents 5cc119d + df1dc30 commit 46dc23e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,6 @@ jobs:
277277

278278
- name: Integration Tests
279279
run: turbo run test --filter=turborepo-tests-integration --color
280-
env:
281-
GO_TAG: rust
282280

283281
turborepo_e2e:
284282
name: Turborepo E2E Tests

cli/turbo.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
"extends": ["//"],
44
"pipeline": {
55
"build": {
6-
"env": ["GO_TAG", "RUNNER_OS"],
6+
"env": ["RUNNER_OS"],
77
"outputs": [
88
"../target/debug/go-turbo",
9+
"../target/debug/go-turbo.exe",
910
"../target/debug/turbo",
1011
"../target/debug/turbo.exe",
1112
"../target/release/go-turbo",
13+
"../target/release/go-turbo.exe",
1214
"../target/release/turbo",
1315
"../target/release/turbo.exe"
1416
],
@@ -18,6 +20,8 @@
1820
"!**/*_test.go",
1921
"../crates/turborepo*/**/*.rs", // Rust crates
2022
"../crates/turborepo*/Cargo.toml",
23+
"../Cargo.toml",
24+
"../Cargo.lock",
2125
"!../crates/**/target"
2226
]
2327
}

0 commit comments

Comments
 (0)