From c3307231d408908540b86b3e21406d9a542d8e5a Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Mon, 13 Jun 2022 12:14:42 +0200 Subject: [PATCH] added ci script --- .github/workflows/ant-build-selfhosted.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ant-build-selfhosted.yaml diff --git a/.github/workflows/ant-build-selfhosted.yaml b/.github/workflows/ant-build-selfhosted.yaml new file mode 100644 index 000000000..91e752e37 --- /dev/null +++ b/.github/workflows/ant-build-selfhosted.yaml @@ -0,0 +1,16 @@ +name: CI Script to build on self-hosted server + +on: push + +jobs: + build: + runs-on: self-hosted + steps: + - uses: actions/checkout@master + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + - name: Build with ant + run: ant clean all dist