Skip to content
Open
Changes from all commits
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
30 changes: 6 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,8 @@ jobs:
name: linux-hermes
path: output
macos:
runs-on: macos-latest
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- uses: actions/checkout@v4.1.0
with:
path: hermes
Expand Down Expand Up @@ -110,15 +107,12 @@ jobs:
name: macos-hermes
path: output
build-apple-runtime:
runs-on: macos-latest
runs-on: macos-15
env:
TERM: dumb
HERMES_WS_DIR: "/tmp/hermes"
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- uses: actions/checkout@v4.1.0
- name: Cache setup
uses: actions/cache@v4.0.0
Expand All @@ -141,11 +135,8 @@ jobs:
- name: Build the Mac frameworks
run: "./utils/build-mac-framework.sh"
test-macos:
runs-on: macos-latest
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- uses: actions/checkout@v4.1.0
with:
path: hermes
Expand All @@ -157,16 +148,13 @@ jobs:
cmake --build ./build
cmake --build ./build --target check-hermes
test-apple-runtime:
runs-on: macos-latest
runs-on: macos-15
needs: build-apple-runtime
env:
TERM: dumb
HERMES_WS_DIR: "/tmp/hermes"
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- uses: actions/checkout@v4.1.0
- name: Cache setup
uses: actions/cache@v4.0.0
Expand Down Expand Up @@ -218,7 +206,7 @@ jobs:
-scheme ApplePlatformsIntegrationTVOSTests
working-directory: test/ApplePlatformsIntegrationTestApp
package-apple-runtime:
runs-on: macos-latest
runs-on: macos-15
needs:
- test-macos
- test-apple-runtime
Expand All @@ -227,9 +215,6 @@ jobs:
HERMES_WS_DIR: "/tmp/hermes"
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- uses: actions/checkout@v4.1.0
- name: Cache setup
uses: actions/cache@v4.0.0
Expand Down Expand Up @@ -566,11 +551,8 @@ jobs:
emulator-options: -timezone Europe/Paris -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: cd android && ./gradlew :intltest:prepareTests && ./gradlew -Pabis=x86 :intltest:connectedAndroidTest
test-macos-test262:
runs-on: macos-latest
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- uses: actions/checkout@v4.1.0
with:
path: hermes
Expand Down
Loading