|
8 | 8 | build_android:
|
9 | 9 | runs-on: ubuntu-latest
|
10 | 10 | # Only run if commit message contains [build.apk]
|
11 |
| - if: contains(github.event.head_commit.message, '[build.apk]') || contains(github.event.head_commit.message, '[build]' || contains(github.event.head_commit.message, '[build.all]')) |
| 11 | + if: contains(github.event.head_commit.message, '[build.apk]') || contains(github.event.head_commit.message, '[build]') || contains(github.event.head_commit.message, '[build.all]') |
12 | 12 | outputs:
|
13 | 13 | apk_link: ${{steps.gdriveUpload_arm64.outputs.web-content-link}}
|
14 | 14 |
|
|
43 | 43 | key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
44 | 44 | restore-keys: |
|
45 | 45 | ${{ runner.os }}-gradle-
|
| 46 | + # Setup system dependencies |
| 47 | + - name: Install system dependencies |
| 48 | + run: | |
| 49 | + sudo apt-get update -y |
| 50 | + sudo apt-get install -y cmake |
46 | 51 |
|
47 | 52 | - uses: actions/setup-java@v4
|
48 | 53 | with:
|
@@ -123,7 +128,7 @@ jobs:
|
123 | 128 | overrwrite: true
|
124 | 129 | build_windows:
|
125 | 130 | runs-on: windows-latest
|
126 |
| - if: contains(github.event.head_commit.message, '[build.windows]') || contains(github.event.head_commit.message, '[build]' || contains(github.event.head_commit.message, '[build.all]')) |
| 131 | + if: contains(github.event.head_commit.message, '[build.windows]') || contains(github.event.head_commit.message, '[build]') || contains(github.event.head_commit.message, '[build.all]') |
127 | 132 | outputs:
|
128 | 133 | zip_link: ${{steps.gdriveUpload.outputs.web-content-link}}
|
129 | 134 |
|
@@ -195,7 +200,7 @@ jobs:
|
195 | 200 | overrwrite: true
|
196 | 201 | build_linux:
|
197 | 202 | runs-on: ubuntu-latest
|
198 |
| - if: contains(github.event.head_commit.message, '[build.linux]' || contains(github.event.head_commit.message, '[build.all]')) |
| 203 | + if: contains(github.event.head_commit.message, '[build.linux]') || contains(github.event.head_commit.message, '[build.all]') |
199 | 204 | permissions:
|
200 | 205 | contents: write
|
201 | 206 | pull-requests: write
|
@@ -260,7 +265,7 @@ jobs:
|
260 | 265 |
|
261 | 266 | build_ios:
|
262 | 267 | runs-on: macos-latest
|
263 |
| - if: contains(github.event.head_commit.message, '[build.ios]' || contains(github.event.head_commit.message, '[build.all]')) |
| 268 | + if: contains(github.event.head_commit.message, '[build.ios]') || contains(github.event.head_commit.message, '[build.all]') |
264 | 269 | permissions:
|
265 | 270 | contents: write
|
266 | 271 | pull-requests: write
|
|
0 commit comments