Skip to content

Proxy server for GP Cloud #1462

Proxy server for GP Cloud

Proxy server for GP Cloud #1462

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
- BRANCH*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout submodules
shell: bash
run: |
git submodule sync --recursive
git submodule update --init --force --recursive --depth=1
- uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: 17.0.5
java-package: jdk+fx
cache: 'gradle'
- name: Build GanttProject
run: ./gradlew --no-daemon build
- name: Publish libs
run: ./gradlew --no-daemon publishToMavenLocal
- name: Build Colloboque
run: cd cloud.ganttproject.colloboque && ./gradlew --no-daemon build