Hermes #107
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| # NOTE: this file is temporarily narrowed to ONLY the Hermes jobs that | |
| # currently build and run on hosted GitHub runners — Win32 x64 and macOS | |
| # Xcode 26.4. Android + iOS Hermes jobs are excluded for now (the | |
| # existing build-android.yml / build-ios.yml workflows don't accept a | |
| # `js-engine` input yet; wiring that up cleanly is a follow-up). | |
| # | |
| # The full matrix is restored in the very last commit of this PR. | |
| jobs: | |
| Win32_x64_Hermes: | |
| uses: ./.github/workflows/build-win32.yml | |
| with: | |
| platform: x64 | |
| js-engine: Hermes | |
| macOS_Xcode264_Hermes: | |
| uses: ./.github/workflows/build-macos.yml | |
| with: | |
| xcode-version: '26.4' | |
| runs-on: macos-26 | |
| js-engine: Hermes |