From 6cfb98fa7df71fd0f69c8daada175302f9aeb87a Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Tue, 24 Jun 2025 10:14:13 -0600 Subject: [PATCH] CI: Add arm64 Linux JS artifact to GitHub Actions workflow --- .github/workflows/js-artifacts.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/js-artifacts.yml b/.github/workflows/js-artifacts.yml index 5a8a7bd3ab3..3b6c12ce907 100644 --- a/.github/workflows/js-artifacts.yml +++ b/.github/workflows/js-artifacts.yml @@ -20,15 +20,23 @@ jobs: matrix: os_name: ['Linux'] arch: ['x86_64'] + toolchain: ['Clang'] package_type: ['Linux-x86_64'] runner_labels: ['["blacksmith-8vcpu-ubuntu-2404"]'] include: - os_name: 'macOS' arch: 'arm64' + toolchain: 'Clang' package_type: 'macOS-arm64' runner_labels: '["macos-15", "self-hosted"]' + - os_name: 'Linux' + arch: 'arm64' + toolchain: 'Clang' + package_type: 'Linux-aarch64' + runner_labels: '["blacksmith-8vcpu-ubuntu-2404-arm"]' + steps: - name: Checkout LadybirdBrowser/ladybird uses: actions/checkout@v4