From 1550ab02ea6771120fabf20f190e368bc653c55d Mon Sep 17 00:00:00 2001 From: Piotr Zarzycki Date: Mon, 15 Mar 2021 14:11:54 +0100 Subject: [PATCH] Actions: Add initial version of GH actions script (reference #42 ) --- .github/workflows/build_windows.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build_windows.yml diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml new file mode 100644 index 0000000..a2f798d --- /dev/null +++ b/.github/workflows/build_windows.yml @@ -0,0 +1,25 @@ +# This workflow will build a Java project with Ant +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant + +name: Moonshine SDK Installer Windows + +on: [push] + +jobs: + build: + + runs-on: windows-latest + strategy: + matrix: + java: [ 11 ] + steps: + - uses: actions/checkout@v2 + - name: Checkout Moonshine-SDK-Installer + uses: actions/checkout@v2 + with: + path: './Moonshine-SDK-Installer' + - uses: joshtynjala/setup-apache-flex-action@v1 + with: + flex-version: "4.16.1" + - name: Build with Ant + run: ant -noinput -buildfile 'MoonshineSDKInstaller\build\build.xml'