Add x86-64 emulation support for Linux ARM test runners #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: macOS | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| test-macos: | |
| name: Install on macOS | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # macos-13: Intel; macos-14, macos-15: ARM64 | |
| os: [ macos-15, macos-14, macos-13 ] | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ matrix.os }}-${{ github.head_ref || github.ref_name }}' | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: brew update-reset | |
| - name: Add local tap for testing | |
| run: brew tap expresslang/eep $GITHUB_WORKSPACE | |
| - run: | | |
| brew install --build-from-source --verbose expresslang/eep/eep | |
| - run: brew audit --strict --formula expresslang/eep/eep | |
| continue-on-error: true | |
| - run: which eep | |
| - run: eep -h | |
| - run: brew test --verbose expresslang/eep/eep | |
| - run: brew uninstall expresslang/eep/eep |