Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
strategy:
matrix:
platform: [
macos-13, # x64
macos-14, # ARM,
macos-15-intel, # x64
macos-15, # ARM,
windows-latest,
]

Expand Down Expand Up @@ -211,12 +211,12 @@ jobs:

- uses: actions/download-artifact@v4.1.7
with:
name: ppx-macos-13
name: ppx-macos-15-intel
path: binaries

- uses: actions/download-artifact@v4.1.7
with:
name: ppx-macos-14
name: ppx-macos-15
path: binaries

- uses: actions/download-artifact@v4.1.7
Expand All @@ -226,11 +226,11 @@ jobs:

- name: Rename MacOS old binary
run: |
mv binaries/ppx-macos-13 binaries/ppx-macos-latest
mv binaries/ppx-macos-15-intel binaries/ppx-macos-latest

- name: Rename MacOS ARM64 binary
run: |
mv binaries/ppx-macos-14 binaries/ppx-macos-arm64
mv binaries/ppx-macos-15 binaries/ppx-macos-arm64

- name: Move binaries into release directory
run: |
Expand All @@ -240,8 +240,8 @@ jobs:
with:
name: |
ppx-linux
ppx-macos-13
ppx-macos-14
ppx-macos-15-intel
ppx-macos-15
ppx-windows-latest
relay-compiler-linux-x64
relay-compiler-macos-x64
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
- name: git status
id: git_status
run: |
echo "::set-output name=status::$( git status --porcelain )"
echo 'status<<EOF' >> $GITHUB_OUTPUT
git status --porcelain >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Exit if files modified
run: |
echo "Files have been modified during the build process:"
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "rescript-relay-compiler"]
path = packages/relay
url = git@github.com:zth/relay.git
branch = rescript-relay
branch = rescriptrelay-2.0
Loading