Skip to content

Commit

Permalink
Revert "CI: We care only about macOS ARM64."
Browse files Browse the repository at this point in the history
This reverts commit 9c21f0c.
  • Loading branch information
bkaradzic committed Dec 13, 2023
1 parent 9c21f0c commit 51f50e7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ jobs:
{ config: debug, binsuffix: Debug },
{ config: release, binsuffix: Release },
]
name: osx-arm64-${{ matrix.config }}
runs-on: macos-13-arm64
name: osx-x64-${{ matrix.config }}
runs-on: macos-13
steps:
- name: Checkout bgfx
uses: actions/checkout@v3
Expand All @@ -198,14 +198,14 @@ jobs:
- name: Build
run: |
cd bgfx
make -j$(sysctl -n hw.physicalcpu) osx-arm64-${{ matrix.config }}
make -j$(sysctl -n hw.physicalcpu) osx-x64-${{ matrix.config }}
- name: Check
run: |
cd bgfx
ls -lash ".build/osx-arm64/bin"
".build/osx-arm64/bin/geometryc${{ matrix.binsuffix}}" --version
".build/osx-arm64/bin/shaderc${{ matrix.binsuffix}}" --version
".build/osx-arm64/bin/texturec${{ matrix.binsuffix}}" --version
ls -lash ".build/osx-x64/bin"
".build/osx-x64/bin/geometryc${{ matrix.binsuffix}}" --version
".build/osx-x64/bin/shaderc${{ matrix.binsuffix}}" --version
".build/osx-x64/bin/texturec${{ matrix.binsuffix}}" --version
android:
strategy:
fail-fast: true
Expand Down

0 comments on commit 51f50e7

Please sign in to comment.