rsnext/.github/workflows
Benjamin Woodruff 0b1209edfa
Revert "Revert "Use turbo-tasks-malloc on all platforms" (#66884)", fix aarch64 compilation in CI (#66885)
We either need GCC >= 4.9 or we need to link with libatomic:
https://github.com/microsoft/mimalloc/issues/443

Unfortunately, manylinux2014-cross ships with GCC 4.8.5:
https://github.com/rust-cross/manylinux-cross/blob/main/manylinux2014/aarch64/Dockerfile#L71

We already appear to override the compiler toolchain in CI for x86_64 to
use clang (which is why mimalloc works there), so let's go ahead and do
that here too. This at least means we're using the same compiler across
both architectures.

I'm leaving the aarch64-musl codepath the same (using gcc) because (1)
we don't use mimalloc there yet and (2) it's a bit harder for me to test
as thoroughly.

# Testing

## Local Compilation

Run bash inside the docker image (I also had to install rosetta2 inside
my Linux VM, as this is an x86_64 image used for cross-compilation to
aarch64):

```
podman run --platform=linux/amd64 -t -i ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2023-09-17-aarch64 bash -l
```

```
git clone https://github.com/vercel/next.js.git --filter=blob:none --branch canary --single-branch
cd next.js
git checkout 6ae9828cce
```

Run the build locally:

```
apt update &&
apt install -y pkg-config xz-utils dav1d libdav1d-dev &&
export JEMALLOC_SYS_WITH_LG_PAGE=16 &&
rustup show &&
rustup target add aarch64-unknown-linux-gnu &&
npm i -g "@napi-rs/cli@${NAPI_CLI_VERSION}" &&
export CC_aarch64_unknown_linux_gnu=/usr/bin/clang &&
export CFLAGS_aarch64_unknown_linux_gnu="--target=aarch64-unknown-linux-gnu --sysroot=/usr/aarch64-unknown-linux-gnu" &&
cd packages/next-swc && npm run build-native-release -- --target aarch64-unknown-linux-gnu &&
llvm-strip -x native/next-swc.*.node &&
objdump -T native/next-swc.*.node | grep GLIBC_
```

Sanity check that the result is an aarch64 binary

```
$ file native/next-swc.linux-arm64-gnu.node
native/next-swc.linux-arm64-gnu.node: ELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, not stripped
```

## Verifying the binary works

Copy the next-swc binary into a copy of shadcn-ui I have sitting around:

```
podman cp 4e8f61b17965:/next.js/packages/next-swc/native/next-swc.linux-arm64-gnu.node ~/ui/node_modules/.pnpm/file+..+nextpack+tarballs+next-swc.tar/node_modules/@next/swc/native/next-swc.linux-arm64-gnu.node
```

and then try running the dev server and loading pages from it in the
browser:

```
pnpm --filter=www dev --turbo
```

## In CI


https://github.com/vercel/next.js/actions/runs/9523143080/job/26254016137
2024-06-15 03:39:24 +00:00
..
build_and_deploy.yml Revert "Revert "Use turbo-tasks-malloc on all platforms" (#66884)", fix aarch64 compilation in CI (#66885) 2024-06-15 03:39:24 +00:00
build_and_test.yml chore: bump turbo to 2.0.3 (#66784) 2024-06-12 19:31:42 +00:00
build_reusable.yml chore: bump turbo to 2.0.3 (#66784) 2024-06-12 19:31:42 +00:00
cancel.yml chore: update github actions (#61517) 2024-02-01 22:13:29 +01:00
code_freeze.yml chore: bump turbo to 2.0.3 (#66784) 2024-06-12 19:31:42 +00:00
issue_bankrupt.yml chore(github-workflow): add bankrupt issues workflow (#66383) 2024-06-05 11:33:56 -07:00
issue_lock.yml chore: update github actions (#61517) 2024-02-01 22:13:29 +01:00
issue_stale.yml chore: fix stale issue closing GH Action (#63523) 2024-03-20 14:38:55 +00:00
notify_release.yml chore: update github actions (#61517) 2024-02-01 22:13:29 +01:00
popular.yml chore(github-workflow): add bankrupt issues workflow (#66383) 2024-06-05 11:33:56 -07:00
pull_request_stats.yml chore: bump turbo to 2.0.3 (#66784) 2024-06-12 19:31:42 +00:00
retry_deploy_test.yml split CI retry workflows (#66888) 2024-06-14 15:11:52 -07:00
retry_test.yml split CI retry workflows (#66888) 2024-06-14 15:11:52 -07:00
setup-nextjs-build.yml ci(workflow): skip building next-swc with latest turbopack (#66048) 2024-05-21 18:45:13 +00:00
test_e2e_deploy_release.yml tweak deploy test jobs (#66856) 2024-06-14 10:37:28 -07:00
test_examples.yml Revert "Revert actions/setup-node v4 bump" (#61640) 2024-02-04 14:06:28 -08:00
triage.yml Allow StackBlitz repro links in bug reports on GitHub (#64935) 2024-04-23 12:58:44 -07:00
trigger_release.yml chore: bump turbo to 2.0.3 (#66784) 2024-06-12 19:31:42 +00:00
turbopack-nextjs-build-integration-tests.yml Increase concurrent of daily Turbopack test runs (#63939) 2024-04-03 13:38:40 +02:00
turbopack-nextjs-dev-integration-tests.yml Increase concurrent of daily Turbopack test runs (#63939) 2024-04-03 13:38:40 +02:00
turbopack-update-tests-manifest.yml Implement Turbopack build manifest update (#63461) 2024-03-19 13:00:33 +01:00
turbopack-upload-tests-manifest.yml Split dev and build test run for Turbopack (#63511) 2024-03-20 10:05:16 +01:00
update_fonts_data.yml chore(github-workflow): Update title for update-font-data workflow (#65293) 2024-05-02 22:55:00 +00:00