Mercurial > hg > monetdb-java
changeset 412:42e006ee81a4
Merge branch 'master' into ci
author | GIT repo for MonetDB <monetgit@dev.monetdb.org> |
---|---|
date | Mon, 11 Jan 2021 16:20:02 +0100 (2021-01-11) |
parents | 2c1bda502efa (diff) 5540793628d6 (current diff) |
children | f0dfd2003aff |
files | |
diffstat | 2 files changed, 42 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,21 @@ +# 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: Linux + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + + - name: Build + run: make all
new file mode 100644 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,21 @@ +# 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: Build + run: make all