Skip to content

Commit

Permalink
Temporarily add step to install ARM64 from local install.sh
Browse files Browse the repository at this point in the history
The github action uses an install.sh that doesn't have the necessary "arch" param from the previous commit.
  • Loading branch information
mitchell-as committed Jan 24, 2025
1 parent e32d1f8 commit e74934d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,16 @@ jobs:
- # === Install State Tool ===
name: Install State Tool
uses: ActiveState/setup-state-tool@v1
if: matrix.sys.os != 'ubuntu-24.04-arm'

- # === Install State Tool (ARM64) ===
name: Install State Tool (ARM64)
if: matrix.sys.os == 'ubuntu-24.04-arm'
shell: bash
run: |
./installers/install.sh
echo "$HOME/.local/ActiveState/StateTool/release/bin" >> $GITHUB_PATH
"$HOME/.local/ActiveState/StateTool/release/bin/state" config set optin.unstable true
- # === Setup ===
name: Setup
Expand Down

0 comments on commit e74934d

Please sign in to comment.