Force compatibility machine target
- We're mostly getting issues with macos runners where -march=compatibility looks to work better but is not automatically set depending which cpu arch is in use. - Backport #1064
This commit is contained in:
10
.github/workflows/e2e.yml
vendored
10
.github/workflows/e2e.yml
vendored
@@ -25,6 +25,11 @@ jobs:
|
||||
musl: true
|
||||
name: Compile ${{ matrix.nickname }}
|
||||
steps:
|
||||
- name: macos info
|
||||
if: runner.os == 'macOS'
|
||||
shell: bash
|
||||
run: |
|
||||
sysctl machdep.cpu
|
||||
- uses: actions/checkout@v3
|
||||
- uses: graalvm/setup-graalvm@v1
|
||||
with:
|
||||
@@ -76,6 +81,11 @@ jobs:
|
||||
nickname: linux
|
||||
name: E2E ${{ matrix.os }}
|
||||
steps:
|
||||
- name: macos info
|
||||
if: runner.os == 'macOS'
|
||||
shell: bash
|
||||
run: |
|
||||
sysctl machdep.cpu
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-java@v3
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user