diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5023fd8..da57dec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,30 @@ jobs: -t x86 build --features native-activity + - name: Build agdk-mainloop example + if: matrix.rust_version == stable + working-directory: examples/agdk-mainloop + run: > + cargo ndk + -t arm64-v8a + -t armeabi-v7a + -t x86_64 + -t x86 + -o app/src/main/jniLibs/ -- build + + - name: Build na-mainloop example + if: matrix.rust_version == stable + working-directory: examples/na-mainloop + run: > + cargo ndk + -t arm64-v8a + -t armeabi-v7a + -t x86_64 + -t x86 + -o app/src/main/jniLibs/ -- build + - name: Build agdk-egui example + if: matrix.rust_version == stable working-directory: examples/agdk-egui run: > cargo ndk @@ -77,6 +100,17 @@ jobs: -t x86 -o app/src/main/jniLibs/ -- build + - name: Build agdk-eframe example + if: matrix.rust_version == stable + working-directory: examples/agdk-eframe + run: > + cargo ndk + -t arm64-v8a + -t armeabi-v7a + -t x86_64 + -t x86 + -o app/src/main/jniLibs/ -- build + - name: Documentation run: > cargo ndk -t arm64-v8a doc --no-deps