Skip to content

Commit

Permalink
ci: Enable newt test on Mac
Browse files Browse the repository at this point in the history
We properly support 64bit in native target now so those can be
re-enabled.
  • Loading branch information
sjanc committed Oct 30, 2024
1 parent e805fc0 commit 9f8f647
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/newt_test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,23 @@ on: [push, pull_request]
jobs:
newt_test:
name: Run newt test all
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 'stable'
- name: Install Dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y gcc-multilib
- name: Install GNU sed
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-13'
run: |
brew install gnu-sed
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
Expand Down

0 comments on commit 9f8f647

Please sign in to comment.