Skip to content

Commit

Permalink
Actions: Add initial version of GH actions script
Browse files Browse the repository at this point in the history
(reference #42 )
  • Loading branch information
piotrzarzycki21 authored Mar 15, 2021
1 parent 5690240 commit 1550ab0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 1550ab0

Please sign in to comment.