Skip to content

Commit a3d5a6c

Browse files
authored
Merge branch 'canary' into patch-3
2 parents 696f1f6 + e5d296c commit a3d5a6c

File tree

93 files changed

+1162
-1126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1162
-1126
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ env:
2828
jobs:
2929
deploy-target:
3030
runs-on: ubuntu-latest
31+
# Don't trigger this job on `pull_request` events from upstream branches.
32+
# Those would already run this job on the `push` event
33+
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork }}
3134
outputs:
3235
value: ${{ steps.deploy-target.outputs.value }}
3336
steps:
@@ -693,7 +696,7 @@ jobs:
693696

694697
buildPassed:
695698
needs: ['deploy-target', 'build', 'build-wasm', 'build-native']
696-
if: always()
699+
if: ${{ always() && needs.deploy-target.outputs.value != '' }}
697700
name: thank you, build
698701
runs-on: ubuntu-latest
699702
steps:

.github/workflows/turbopack-benchmark.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ on:
55
push:
66
branches:
77
- canary
8-
paths:
9-
- '**/crates/**'
10-
- '**/Cargo.toml'
11-
- '**/Cargo.lock'
128
pull_request:
139
types: ['opened', 'reopened', 'synchronize', 'labeled']
1410
paths:
@@ -30,29 +26,6 @@ env:
3026
TURBO_TOKEN: ${{ secrets.HOSTED_TURBO_TOKEN }}
3127

3228
jobs:
33-
benchmark-tiny:
34-
name: Benchmark Rust Crates (tiny)
35-
runs-on: ['self-hosted', 'linux', 'x64', 'metal']
36-
steps:
37-
- uses: actions/checkout@v4
38-
39-
- name: Setup Rust toolchain
40-
uses: ./.github/actions/setup-rust
41-
42-
- name: Install cargo-codspeed
43-
uses: taiki-e/install-action@v2
44-
with:
45-
46-
47-
- name: Build the benchmark target(s)
48-
run: cargo codspeed build -p turbo-rcstr
49-
50-
- name: Run the benchmarks
51-
uses: CodSpeedHQ/action@v3
52-
with:
53-
run: cargo codspeed run
54-
token: ${{ secrets.CODSPEED_TOKEN }}
55-
5629
benchmark-small-apps:
5730
name: Benchmark Rust Crates (small apps)
5831
runs-on: ['self-hosted', 'linux', 'x64', 'metal']

0 commit comments

Comments
 (0)