-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add macos-13 to replace macos-12 since x86 based
- Loading branch information
Showing
3 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,15 @@ jobs: | |
checkName: "TypeScript code is properly formatted" | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
|
||
- name: Check tests - macOS 13 ✅ | ||
uses: fountainhead/[email protected] | ||
id: macos13-tests | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
# This check name is defined as the github action job name (in .github/workflows/testing.yaml) | ||
checkName: "Build middleware macos-13 🔧" | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
|
||
- name: Check tests - macOS 14 ✅ | ||
uses: fountainhead/[email protected] | ||
id: macos14-tests | ||
|
@@ -102,7 +111,7 @@ jobs: | |
steps.rat-check.outputs.conclusion != 'success' || | ||
steps.scala-format.outputs.conclusion != 'success' || | ||
steps.ts-format.outputs.conclusion != 'success' || | ||
steps.macos12-tests.outputs.conclusion != 'success' || | ||
steps.macos13-tests.outputs.conclusion != 'success' || | ||
steps.macos14-tests.outputs.conclusion != 'success' || | ||
steps.ubuntu-tests.outputs.conclusion != 'success' || | ||
steps.ubuntu-arm64-native.outputs.conclusion != 'success' || | ||
|
@@ -111,7 +120,7 @@ jobs: | |
echo "Rat Check Status: ${{ steps.rat-check.conclusion }}" | ||
echo "Scala Format Status: ${{ steps.scala-format.conclusion }}" | ||
echo "Typescript Format Status: ${{ steps.ts-format.conclusion }}" | ||
echo "MacOS 12 Test Status: ${{ steps.macos12-tests.outputs.conclusion }}" | ||
echo "MacOS 13 Test Status: ${{ steps.macos13-tests.outputs.conclusion }}" | ||
echo "MacOS 14 Test Status: ${{ steps.macos14-tests.outputs.conclusion }}" | ||
echo "Ubuntu Test Status: ${{ steps.ubuntu-tests.conclusion }}" | ||
echo "Ubuntu ARM64 Native Status: ${{ steps.ubuntu-arm64-native.conclusion }}" | ||
|
@@ -208,23 +217,23 @@ jobs: | |
name: ubuntu-20.04-arm64-libomega_edit.so | ||
path: _install/libomega_edit_linux_aarch64.so | ||
|
||
- name: Download macos-14 library file 🔻 | ||
- name: Download macos-13 library file 🔻 | ||
uses: dawidd6/action-download-artifact@v7 | ||
with: | ||
workflow: tests.yml | ||
branch: main | ||
workflow_conclusion: success | ||
name: macos-14-arm64-libomega_edit.dylib | ||
path: _install/libomega_edit_macos_aarch64.dylib | ||
name: macos-13-x64-libomega_edit.dylib | ||
path: _install/libomega_edit_macos_x86_64.dylib | ||
|
||
- name: Download macos-14 library file 🔻 | ||
uses: dawidd6/action-download-artifact@v7 | ||
with: | ||
workflow: tests.yml | ||
branch: main | ||
workflow_conclusion: success | ||
name: macos-14-x64-libomega_edit.dylib | ||
path: _install/libomega_edit_macos_x86_64.dylib | ||
name: macos-14-arm64-libomega_edit.dylib | ||
path: _install/libomega_edit_macos_aarch64.dylib | ||
|
||
- name: Download windows library file 🔻 | ||
uses: dawidd6/action-download-artifact@v7 | ||
|
This file contains 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