Skip to content

Commit ebad1cd

Browse files
committed
Swift Androd build
1 parent 73ebe28 commit ebad1cd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
run: |
5151
sudo apt install -q ninja-build patchelf
5252
# build all architectures
53-
./build
53+
#./build
5454
5555
# just build x86_64 for testing
5656
#TARGET_ARCHS=x86_64 ./build
5757
5858
# build arch specified by the matrix
59-
#TARGET_ARCHS=${{ matrix.arch }} ./build
59+
TARGET_ARCHS=${{ matrix.arch }} ./build
6060
- name: Get artifact info
6161
id: paths
6262
run: |
@@ -70,6 +70,10 @@ jobs:
7070
compression-level: 0
7171
name: ${{ steps.paths.outputs.artifact-name }}
7272
path: ${{ steps.paths.outputs.artifact-path }}
73+
- name: Cleanup
74+
run: |
75+
# need to free up some space or else when installing we get: No space left on device
76+
rm -rf ${{ runner.temp }}/swift-android-sdk/{build,src}
7377
- name: Install SDK
7478
run: |
7579
${{ steps.paths.outputs.swift-path }} sdk install ${{ steps.paths.outputs.artifact-path }}

0 commit comments

Comments
 (0)