Compare commits

..

2 Commits

Author SHA1 Message Date
b55aaa1d18 Maybe CI android?? 2024-09-10 20:20:40 -04:00
34e19505bd No longer need this test. 2024-09-09 15:57:43 -04:00
2 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,20 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
submodules: true submodules: true
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'termurin'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
with:
packages:
- tools
- platform-tools
- build-tools;34.0.0
- platforms;android-34
- ndk;r26d
- run: sudo apt update && sudo apt install -y doxygen graphviz mingw-w64 - run: sudo apt update && sudo apt install -y doxygen graphviz mingw-w64
- run: make all -j`nproc` docs - run: make all -j`nproc` docs
- run: docker build . - run: docker build .

View File