Changeset: 88a42e950f1c for monetdb-java URL: https://dev.monetdb.org/hg/monetdb-java?cmd=changeset;node=88a42e950f1c Added Files: .github/workflows/macos.yml Branch: default Log Message:
add osx ci diffs (29 lines): diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,24 @@ +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: MacOS + +on: [push] + +jobs: + build: + + runs-on: macos-10.15 + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + + - name: Install Ant + run: brew install ant + + - name: Build + run: make all _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
