Files
ortools-clone/.github/workflows/make_macos_java.yml
2021-09-17 14:26:50 +02:00

29 lines
655 B
YAML

name: Make MacOS Java
on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
make:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Check make
run: make --version
- name: Swig install
run: brew install swig
- name: Check swig
run: swig -version
- name: Check java
run: java -version
- name: Build third party
run: make third_party -j4
- name: Build C++
run: make cc -j4
- name: Build Java
run: make java -j4
- name: Test
run: make test_java -j4
- name: Create maven package
run: make package_java