Skip to content
Merged
Changes from 1 commit
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
Next Next commit
ci: Enable newt test on Mac
We properly support 64bit in native target now so those can be
re-enabled.
  • Loading branch information
sjanc committed Oct 30, 2024
commit 9f8f64756e4b627237d34bea0d17f52218216084
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
Loading