Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8a46a1d
Remove prebuilt binaries from repo
padmaia Oct 28, 2021
3d963c3
Prefer locally built binary
padmaia Oct 28, 2021
55d21b9
Add binary packages as optionalDependencies
padmaia Oct 28, 2021
52adcd3
Remove build-native workflow for prebuilt binaries
padmaia Oct 28, 2021
f65fb95
Remove binaries from checkCompiled job
padmaia Oct 28, 2021
61b17af
Change build-native command to default to dev
padmaia Oct 28, 2021
7cfae6c
Add build-native-dev and have tests depend on it
padmaia Oct 28, 2021
61cc749
Update contributing
padmaia Oct 28, 2021
3d036ef
Merge remote-tracking branch 'upstream/canary' into chore/rust-workflow
padmaia Oct 28, 2021
2459fb5
Run ls to make inspect artifact download
padmaia Oct 28, 2021
b6c1b28
Use correct artifact download path
padmaia Oct 28, 2021
6336b21
Try using reusable workflows
padmaia Oct 28, 2021
97e2b6f
Resort to duplication for now
padmaia Oct 28, 2021
aadf437
Inspect artifact download
padmaia Oct 28, 2021
f4326a3
Ensure native is copied for PR stats
ijjk Oct 29, 2021
898d811
Merge branch 'canary' into chore/rust-workflow
ijjk Oct 29, 2021
df0cdb2
Copy after ref checkout and log binaries for PR stats
ijjk Oct 29, 2021
c0fc50f
fix typo
ijjk Oct 29, 2021
dd8a04b
copy right before linking/packing
ijjk Oct 29, 2021
dce7fcb
Merge branch 'canary' into chore/rust-workflow
ijjk Oct 29, 2021
fccde24
Use fs.copy
ijjk Oct 29, 2021
b950987
fix test for now
ijjk Oct 29, 2021
fcbd1a4
Merge branch 'canary' into chore/rust-workflow
ijjk Oct 29, 2021
b685def
Merge branch 'canary' into chore/rust-workflow
kodiakhq[bot] Oct 29, 2021
a763607
Merge branch 'canary' into chore/rust-workflow
kodiakhq[bot] Oct 29, 2021
4010c7e
Merge branch 'canary' into chore/rust-workflow
ijjk Oct 29, 2021
0d37fd6
Merge branch 'canary' into chore/rust-workflow
ijjk Oct 29, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/next-stats-action/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {
// in case of noisy environment slowing down initial repo build
await exec(buildCommand, false, { timeout: 5 * 60 * 1000 })
}
await fs.copy(
path.join(__dirname, '../native'),
path.join(dir, 'packages/next/native')
)

logger(`Linking packages in ${dir}`)
const pkgPaths = await linkPackages(dir)
Expand Down
4 changes: 4 additions & 0 deletions .github/actions/next-stats-action/src/prepare/repo-setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ module.exports = (actionInfo) => {
// make sure native binaries are included in local linking
if (pkg === 'next') {
pkgData.files.push('native')
console.log(
'using swc binaries: ',
await exec(`ls ${path.join(path.dirname(pkgDataPath), 'native')}`)
)
}
await fs.writeFile(
pkgDataPath,
Expand Down
107 changes: 0 additions & 107 deletions .github/workflows/build_native.yml

This file was deleted.

Loading