minor #131
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-linux: | |
runs-on: ubuntu-latest | |
env: | |
JAVA_VERSION: "21" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
nim-version: 'stable' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: | | |
sudo apt install -y openjdk-${{ env.JAVA_VERSION }}-jdk wget unzip | |
JAVA_HOME=/usr/lib/jvm/java-${{ env.JAVA_VERSION }}-openjdk-amd64 | |
echo "JAVA_HOME=$JAVA_HOME" >> $GITHUB_ENV | |
echo "${JAVA_HOME}/bin" >> $GITHUB_PATH | |
- name: Set up Android SDK/NDK | |
run: | | |
nimble -d:GitHubCI setupBuildEnv -Y | |
- name: Run tests | |
run: | | |
nimble -d:GitHubCI test | |
- name: Upload APK artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: raylib-game-apk | |
path: ${{ github.workspace }}/raylib_game.apk | |
if-no-files-found: error | |
test-windows: | |
runs-on: windows-latest | |
env: | |
JAVA_VERSION: "21" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
nim-version: 'stable' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: | | |
choco install wget | |
choco install openjdk --version=${{ env.JAVA_VERSION }} | |
$JAVA_HOME = "C:\Program Files\OpenJDK\jdk-${{ env.JAVA_VERSION }}" | |
echo "JAVA_HOME=$JAVA_HOME" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
echo "$env:JAVA_HOME\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: Set up Android SDK/NDK | |
run: | | |
nimble -d:GitHubCI setupBuildEnv -Y | |
- name: Run tests | |
run: | | |
nimble -d:GitHubCI test | |
- name: Upload APK artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: raylib-game-apk-windows | |
path: ${{ github.workspace }}\raylib_game.apk | |
if-no-files-found: error |