Skip to content

Commit 5e9cddf

Browse files
authored
Enable ARC by default (#91)
1 parent 8dda3c1 commit 5e9cddf

39 files changed

Lines changed: 336 additions & 245 deletions

.github/workflows/build_android.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
configure:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0
4141
- name: Setup Java
@@ -53,7 +53,7 @@ jobs:
5353
run: cmake ${{ github.workspace }} -G "Ninja Multi-Config" -B ${{ runner.workspace }}/build -DYUP_TARGET_ANDROID=ON -DYUP_ENABLE_TESTS=ON -DYUP_ENABLE_EXAMPLES=ON
5454
- name: Cache Configure
5555
id: cache-build
56-
uses: actions/cache/save@v4
56+
uses: actions/cache/save@v5
5757
with:
5858
path: ${{ runner.workspace }}/build
5959
key: android-build-${{ github.sha }}
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
needs: [configure]
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v6
6666
with:
6767
fetch-depth: 0
6868
- name: Setup Java
@@ -76,7 +76,7 @@ jobs:
7676
uses: nttld/setup-ndk@v1
7777
with:
7878
ndk-version: ${{env.NDK_VERSION}}
79-
- uses: actions/cache/restore@v4
79+
- uses: actions/cache/restore@v5
8080
id: cache-restore
8181
with:
8282
path: ${{ runner.workspace }}/build
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-latest
9494
needs: [configure]
9595
steps:
96-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v6
9797
with:
9898
fetch-depth: 0
9999
- name: Setup Java
@@ -107,7 +107,7 @@ jobs:
107107
uses: nttld/setup-ndk@v1
108108
with:
109109
ndk-version: ${{env.NDK_VERSION}}
110-
- uses: actions/cache/restore@v4
110+
- uses: actions/cache/restore@v5
111111
id: cache-restore
112112
with:
113113
path: ${{ runner.workspace }}/build

.github/workflows/build_ios.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
configure:
3232
runs-on: macos-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0
3737
- name: Configure
@@ -44,7 +44,7 @@ jobs:
4444
cmake --build ${{ runner.workspace }}/build --config Release --target SDL2-static
4545
- name: Cache Configure
4646
id: cache-build
47-
uses: actions/cache/save@v4
47+
uses: actions/cache/save@v5
4848
with:
4949
path: ${{ github.workspace }}/build
5050
key: ios-build-${{ github.sha }}
@@ -53,10 +53,10 @@ jobs:
5353
runs-on: macos-latest
5454
needs: [configure]
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757
with:
5858
fetch-depth: 0
59-
- uses: actions/cache/restore@v4
59+
- uses: actions/cache/restore@v5
6060
id: cache-restore
6161
with:
6262
path: ${{ runner.workspace }}/build
@@ -73,10 +73,10 @@ jobs:
7373
runs-on: macos-latest
7474
needs: [configure]
7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v6
7777
with:
7878
fetch-depth: 0
79-
- uses: actions/cache/restore@v4
79+
- uses: actions/cache/restore@v5
8080
id: cache-restore
8181
with:
8282
path: ${{ runner.workspace }}/build
@@ -93,10 +93,10 @@ jobs:
9393
runs-on: macos-latest
9494
needs: [configure]
9595
steps:
96-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v6
9797
with:
9898
fetch-depth: 0
99-
- uses: actions/cache/restore@v4
99+
- uses: actions/cache/restore@v5
100100
id: cache-restore
101101
with:
102102
path: ${{ runner.workspace }}/build

.github/workflows/build_linux.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
configure:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v6
4141
with:
4242
fetch-depth: 0
4343
- name: Install Dependencies
@@ -50,7 +50,7 @@ jobs:
5050
cmake --build ${{ runner.workspace }}/build --config Release --target SDL2-static
5151
- name: Cache Configure
5252
id: cache-build
53-
uses: actions/cache/save@v4
53+
uses: actions/cache/save@v5
5454
with:
5555
path: ${{ runner.workspace }}/build
5656
key: linux-build-${{ github.sha }}
@@ -60,11 +60,11 @@ jobs:
6060
needs: [configure]
6161
timeout-minutes: 45
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v6
6464
with:
6565
fetch-depth: 0
6666
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
67-
- uses: actions/cache/restore@v4
67+
- uses: actions/cache/restore@v5
6868
id: cache-restore
6969
with:
7070
path: ${{ runner.workspace }}/build
@@ -81,11 +81,11 @@ jobs:
8181
needs: [configure]
8282
timeout-minutes: 45
8383
steps:
84-
- uses: actions/checkout@v4
84+
- uses: actions/checkout@v6
8585
with:
8686
fetch-depth: 0
8787
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
88-
- uses: actions/cache/restore@v4
88+
- uses: actions/cache/restore@v5
8989
id: cache-restore
9090
with:
9191
path: ${{ runner.workspace }}/build
@@ -101,11 +101,11 @@ jobs:
101101
runs-on: ubuntu-latest
102102
needs: [configure]
103103
steps:
104-
- uses: actions/checkout@v4
104+
- uses: actions/checkout@v6
105105
with:
106106
fetch-depth: 0
107107
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
108-
- uses: actions/cache/restore@v4
108+
- uses: actions/cache/restore@v5
109109
id: cache-restore
110110
with:
111111
path: ${{ runner.workspace }}/build
@@ -120,11 +120,11 @@ jobs:
120120
runs-on: ubuntu-latest
121121
needs: [configure]
122122
steps:
123-
- uses: actions/checkout@v4
123+
- uses: actions/checkout@v6
124124
with:
125125
fetch-depth: 0
126126
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
127-
- uses: actions/cache/restore@v4
127+
- uses: actions/cache/restore@v5
128128
id: cache-restore
129129
with:
130130
path: ${{ runner.workspace }}/build
@@ -139,11 +139,11 @@ jobs:
139139
runs-on: ubuntu-latest
140140
needs: [configure]
141141
steps:
142-
- uses: actions/checkout@v4
142+
- uses: actions/checkout@v6
143143
with:
144144
fetch-depth: 0
145145
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
146-
- uses: actions/cache/restore@v4
146+
- uses: actions/cache/restore@v5
147147
id: cache-restore
148148
with:
149149
path: ${{ runner.workspace }}/build
@@ -158,11 +158,11 @@ jobs:
158158
runs-on: ubuntu-latest
159159
needs: [configure]
160160
steps:
161-
- uses: actions/checkout@v4
161+
- uses: actions/checkout@v6
162162
with:
163163
fetch-depth: 0
164164
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
165-
- uses: actions/cache/restore@v4
165+
- uses: actions/cache/restore@v5
166166
id: cache-restore
167167
with:
168168
path: ${{ runner.workspace }}/build

.github/workflows/build_macos.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
configure:
3131
runs-on: macos-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
- name: Configure
@@ -41,7 +41,7 @@ jobs:
4141
cmake --build ${{ runner.workspace }}/build --config Release --target SDL2-static
4242
- name: Cache Configure
4343
id: cache-build
44-
uses: actions/cache/save@v4
44+
uses: actions/cache/save@v5
4545
with:
4646
path: ${{ runner.workspace }}/build
4747
key: macos-build-${{ github.sha }}
@@ -51,10 +51,10 @@ jobs:
5151
needs: [configure]
5252
timeout-minutes: 45
5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v6
5555
with:
5656
fetch-depth: 0
57-
- uses: actions/cache/restore@v4
57+
- uses: actions/cache/restore@v5
5858
id: cache-restore
5959
with:
6060
path: ${{ runner.workspace }}/build
@@ -71,10 +71,10 @@ jobs:
7171
needs: [configure]
7272
timeout-minutes: 45
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v6
7575
with:
7676
fetch-depth: 0
77-
- uses: actions/cache/restore@v4
77+
- uses: actions/cache/restore@v5
7878
id: cache-restore
7979
with:
8080
path: ${{ runner.workspace }}/build
@@ -90,10 +90,10 @@ jobs:
9090
runs-on: macos-latest
9191
needs: [configure]
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v6
9494
with:
9595
fetch-depth: 0
96-
- uses: actions/cache/restore@v4
96+
- uses: actions/cache/restore@v5
9797
id: cache-restore
9898
with:
9999
path: ${{ runner.workspace }}/build
@@ -108,10 +108,10 @@ jobs:
108108
runs-on: macos-latest
109109
needs: [configure]
110110
steps:
111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v6
112112
with:
113113
fetch-depth: 0
114-
- uses: actions/cache/restore@v4
114+
- uses: actions/cache/restore@v5
115115
id: cache-restore
116116
with:
117117
path: ${{ runner.workspace }}/build
@@ -126,10 +126,10 @@ jobs:
126126
runs-on: macos-latest
127127
needs: [configure]
128128
steps:
129-
- uses: actions/checkout@v4
129+
- uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 0
132-
- uses: actions/cache/restore@v4
132+
- uses: actions/cache/restore@v5
133133
id: cache-restore
134134
with:
135135
path: ${{ runner.workspace }}/build
@@ -144,10 +144,10 @@ jobs:
144144
runs-on: macos-latest
145145
needs: [configure]
146146
steps:
147-
- uses: actions/checkout@v4
147+
- uses: actions/checkout@v6
148148
with:
149149
fetch-depth: 0
150-
- uses: actions/cache/restore@v4
150+
- uses: actions/cache/restore@v5
151151
id: cache-restore
152152
with:
153153
path: ${{ runner.workspace }}/build

.github/workflows/build_wasm.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
build_tests_debug:
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
@@ -53,7 +53,7 @@ jobs:
5353
build_tests_release:
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757
with:
5858
fetch-depth: 0
5959
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
@@ -70,7 +70,7 @@ jobs:
7070
build_console:
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v6
7474
with:
7575
fetch-depth: 0
7676
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
@@ -86,7 +86,7 @@ jobs:
8686
build_app:
8787
runs-on: ubuntu-latest
8888
steps:
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v6
9090
with:
9191
fetch-depth: 0
9292
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}
@@ -102,7 +102,7 @@ jobs:
102102
build_graphics:
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v6
106106
with:
107107
fetch-depth: 0
108108
- run: sudo apt-get update && sudo apt-get install -y ${INSTALL_DEPS}

0 commit comments

Comments
 (0)