Skip to content

Commit bc04cdc

Browse files
Cherry-pick fixes from community branch (#1873)
Co-authored-by: Florian <laforest.florian@gmail.com>
1 parent 00de210 commit bc04cdc

94 files changed

Lines changed: 1482 additions & 1031 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/setup-runner/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
echo "week=$(date +'%Y-%U')" >> $GITHUB_OUTPUT
3333
3434
- name: Restore cache
35-
# TODO: Avoid skipping restore on Windows
35+
# TODO: Avoid skipping restore on Windows
3636
# (see https://github.com/pingbird/puro/issues/87)
3737
if: runner.os != 'Windows'
3838
id: restore
@@ -47,15 +47,15 @@ runs:
4747
# Skip on any cache hit (partial or full)
4848
if: runner.os != 'Windows' && steps.restore.outputs.cache-matched-key == ''
4949
shell: bash
50-
run: curl -sS -o- https://puro.dev/install.sh | PURO_VERSION="1.4.6" bash
50+
run: curl -sS -o- https://puro.dev/install.sh | PURO_VERSION="1.4.11" bash
5151

5252
- name: Install puro (windows)
5353
# We always install on windows, as we currently don't restore a cache (see TODO above)
5454
if: runner.os == 'Windows' && steps.restore.outputs.cache-matched-key == ''
5555
shell: pwsh
5656
run: >-
5757
Invoke-WebRequest
58-
-Uri "https://puro.dev/builds/1.4.6/windows-x64/puro.exe"
58+
-Uri "https://puro.dev/builds/1.4.11/windows-x64/puro.exe"
5959
-OutFile "$Env:PURO_ROOT";
6060
&"$Env:PURO_ROOT\puro.exe" install-puro --promote
6161

.github/workflows/binary-combine-android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-android-combined:
88
name: Combine Android binaries
99
timeout-minutes: 15
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-latest
1111
steps:
1212
- name: Fetch x86_64 build
1313
uses: actions/download-artifact@v4
@@ -35,7 +35,7 @@ jobs:
3535
retention-days: 1
3636

3737
- name: Delete individual build artifacts
38-
uses: geekyeggo/delete-artifact@v4
38+
uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # v5.1.0
3939
with:
4040
name: |
4141
librealm-android-x86_64

.github/workflows/binary-combine-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
retention-days: 1
3939

4040
- name: Delete individual framework artifacts
41-
uses: geekyeggo/delete-artifact@v4
41+
uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # v5.1.0
4242
with:
4343
name: |
4444
librealm-ios-device

.github/workflows/build-native.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
build: ${{ fromJSON(inputs.build) }}
30+
build: ${{ fromJSON(inputs.build) }}
3131
steps:
3232
- name: Checkout
3333
uses: actions/checkout@v4
3434
with:
35-
submodules: 'recursive'
35+
submodules: "recursive"
3636

3737
- name: Check cache
3838
id: check-cache
@@ -55,7 +55,7 @@ jobs:
5555
if: runner.os == 'macOS'
5656
run: |
5757
xcodes installed
58-
sudo xcodes select 15.4
58+
sudo xcodes select 16.4
5959
6060
- name: Build
6161
if: steps.check-cache.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)