[workflows] disable rootfs builds until a good strategy gets defined #26
This file contains hidden or 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 Sanity Check (CI) | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "main", "development" ] | |
| jobs: | |
| check-syntax: | |
| name: Lint & Compile Check | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./controller | |
| steps: | |
| - name: Checkout Project Code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up Java 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| cache: 'gradle' | |
| - name: Grant Execute Permission to Gradlew | |
| run: chmod +x gradlew | |
| # - name: Run Android Lint (Syntax & Rules Check) | |
| # run: ./gradlew lintDebug | |
| - name: Compile Test (Assemble Debug) | |
| run: ./gradlew assembleDebug --stacktrace |