@@ -58,42 +58,43 @@ jobs:
58
58
name : rustboyadvance-sdl2-x86_64-unknown-linux-gnu
59
59
path : artifacts
60
60
61
- build-android-apk :
62
-
63
- runs-on : ubuntu-latest
64
-
65
- steps :
66
- - name : Checkout 🛎️
67
- uses : actions/checkout@v4
68
- with :
69
- submodules : recursive
70
- - name : Install toolchains
71
- run : rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android
72
-
73
- - name : Cache cargo registry
74
- uses : actions/cache@v4
75
- with :
76
- path : ~/.cargo/registry
77
- key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
78
- - name : Cache cargo index
79
- uses : actions/cache@v4
80
- with :
81
- path : ~/.cargo/git
82
- key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
83
- - name : Cache cargo build
84
- uses : actions/cache@v4
85
- with :
86
- path : target
87
- key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
88
-
89
- - name : Build APK
90
- working-directory : ./platform/android
91
- run : ./gradlew assemble
92
- - name : Upload artifacts
93
- uses : actions/upload-artifact@v4
94
- with :
95
- name : rustdroid.apk
96
- path : ./platform/android/app/build/outputs/apk/release/app-release-unsigned.apk
61
+ # TODO: this workflow is stale
62
+ # build-android-apk:
63
+
64
+ # runs-on: ubuntu-latest
65
+
66
+ # steps:
67
+ # - name: Checkout 🛎️
68
+ # uses: actions/checkout@v4
69
+ # with:
70
+ # submodules: recursive
71
+ # - name: Install toolchains
72
+ # run: rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android
73
+
74
+ # - name: Cache cargo registry
75
+ # uses: actions/cache@v4
76
+ # with:
77
+ # path: ~/.cargo/registry
78
+ # key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
79
+ # - name: Cache cargo index
80
+ # uses: actions/cache@v4
81
+ # with:
82
+ # path: ~/.cargo/git
83
+ # key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
84
+ # - name: Cache cargo build
85
+ # uses: actions/cache@v4
86
+ # with:
87
+ # path: target
88
+ # key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
89
+
90
+ # - name: Build APK
91
+ # working-directory: ./platform/android
92
+ # run: ./gradlew assemble
93
+ # - name: Upload artifacts
94
+ # uses: actions/upload-artifact@v4
95
+ # with:
96
+ # name: rustdroid.apk
97
+ # path: ./platform/android/app/build/outputs/apk/release/app-release-unsigned.apk
97
98
98
99
99
100
0 commit comments