build(ci): GitHub workflow to build for Intel-based Macs #1
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: MacOS amd64 (Intel) | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Install SWIG and CMake | |
run: | | |
brew install swig | |
brew install cmake | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build | |
run: ./gradlew native_macos_amd64_gcc | |
- name: Check results | |
run: ls -l build/natives/macos_amd64_gcc |