Skip to content

bazel: Make usage of protobuf know type duration.proto working #208

bazel: Make usage of protobuf know type duration.proto working

bazel: Make usage of protobuf know type duration.proto working #208

name: amd64 MacOS Make Java
on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
make:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install brew Make
run: |
brew install make
echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH
- name: Check java
run: java -version
- name: Swig install
run: brew install swig
- name: Check swig
run: swig -version
- name: Check make
run: make --version
- name: Check system
run: make detect_port
- name: Check Java
run: make detect_java
- name: Build C++ and Java
run: make java JOBS=4
- name: Test Java
run: make test_java -j4
- name: Create maven package
run: make package_java