* gradle plugin: arguments support for launch* tasks #317
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: Test PRs | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
env: | |
MAVEN_ARGS: -Dmaven.resolver.transport=wagon | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '17' | |
- name: Install dependencies | |
run: | | |
brew install openssl | |
brew install autoconf | |
brew install automake | |
brew install libtool | |
brew install cmake | |
- name: build natives | |
run: ./build.sh |