* migration to central.sonatype, release scripts #342
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: Test PRs | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: macos-15 | |
| 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 | |
| - name: build natives | |
| run: ./build.sh |