Skip to content

Linux ARM64 in CI #975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
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
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
macos-13, # x64
macos-14, # ARM
ubuntu-20.04,
buildjet-2vcpu-ubuntu-2204-arm, # ARM
windows-latest,
]
# syntax explanation:
Expand All @@ -33,6 +34,8 @@ jobs:
artifact-folder: darwinarm64
- os: ubuntu-20.04
artifact-folder: linux
- os: buildjet-2vcpu-ubuntu-2204-arm
artifact-folder: linuxarm64
- os: windows-latest
artifact-folder: win32

Expand Down Expand Up @@ -134,6 +137,14 @@ jobs:
- run: tar -xvf binary.tar
working-directory: binaries

- name: Download Linux ARM64 binary
uses: actions/download-artifact@v4
with:
name: buildjet-2vcpu-ubuntu-2204-arm
path: binaries
- run: tar -xvf binary.tar
working-directory: binaries

- name: Download Windows binary
uses: actions/download-artifact@v4
with:
Expand All @@ -148,7 +159,7 @@ jobs:

- name: Move binaries to folders
run: |
declare -a platforms=("darwin" "darwinarm64" "linux" "win32")
declare -a platforms=("darwin" "darwinarm64" "linux" "linuxarm64" "win32")

for platform in "${platforms[@]}"; do
mkdir server/analysis_binaries/"$platform"
Expand Down
Loading