build(ci): bring workflows together #4
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
# This workflow builds and tests the project on a MacOS amd64 machine (Intel Mac). | |
name: MacOS amd64 | |
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_macosx_amd64_clang | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: macosx-amd64-artifacts | |
path: build/natives/macosx_amd64_clang |