Expand $(MAKE) in csc files #1589
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
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java 20 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 20 | |
distribution: 'zulu' | |
- name: Verify gradle-wrapper checksum | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Build Cooja and Documentation | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: 8.3 | |
cache-read-only: false | |
arguments: jar | |
- name: Test MSPSim | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: 8.3 | |
arguments: test |