Skip to content

Commit

Permalink
Use arm64 version of parallelize.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchell-as committed Jan 24, 2025
1 parent 4e10d8c commit 6f7a7a4
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
File renamed without changes.
Binary file added .github/deps/Linux/arm64/bin/parallelize
Binary file not shown.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ jobs:
name: Setup
shell: bash
run: |
bin=$(pwd)/.github/deps/${{ runner.os }}/bin
arch="amd64"
if [[ ${{ matrix.sys.os }} = "ubuntu-24.04-arm" ]]; then arch="arm64"; fi
bin=$(pwd)/.github/deps/${{ runner.os }}/$arch/bin
echo "Adding $bin to PATH"
echo "$bin" >> $GITHUB_PATH
Expand Down Expand Up @@ -137,7 +139,6 @@ jobs:
shell: bash
timeout-minutes: 15
run: |
export PATH="$(pwd)/.github/deps/${{ runner.os }}/bin:$PATH"
parallelize "$(cat <<'EOF'
[
{
Expand Down

0 comments on commit 6f7a7a4

Please sign in to comment.