Get android files & copy to usb feature #731
Workflow file for this run
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: Build Modules | |
on: | |
pull_request: | |
branches: main | |
jobs: | |
# Github Action to install Maven modules in the root directory | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
- name: Run maven install on bundle-core, serviceadapter-core, and bundleserver | |
run: mvn -ntp install | |
- name: Run gradle build on BundleClient, BundleTransport | |
run: ./gradlew build |