Skip to content
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
dc54b5f
Update main.yml
airsquared Aug 27, 2019
d59e6e3
Update main.yml
airsquared Aug 29, 2019
2ac805b
Update main.yml
airsquared Aug 29, 2019
dfbc991
Update main.yml
airsquared Aug 29, 2019
6b81eb2
Update main.yml
airsquared Aug 29, 2019
bdf832d
Update main.yml
airsquared Aug 30, 2019
db2c7bd
Update main.yml
airsquared Aug 30, 2019
ee2a872
Update main.yml
airsquared Aug 30, 2019
bdd7e75
Update main.yml
airsquared Aug 30, 2019
5c5ef48
Update main.yml
airsquared Aug 30, 2019
d5eb2a9
Update main.yml
airsquared Aug 30, 2019
795fae1
Update main.yml
airsquared Aug 30, 2019
5ad1c1d
Update main.yml
airsquared Aug 30, 2019
273139c
Update main.yml
airsquared Aug 30, 2019
4534329
Update main.yml
airsquared Aug 31, 2019
0e7bd7b
Update main.yml
airsquared Aug 31, 2019
d4d4b19
Update main.yml
airsquared Aug 31, 2019
fe513f0
Update main.yml
airsquared Sep 12, 2019
f18fd63
Update main.yml
airsquared Sep 12, 2019
ee1bb8f
ubuntu
airsquared Sep 12, 2019
a72096d
Fix compiling on platforms other than macOS
airsquared Sep 12, 2019
ccee367
Merge pull request #104 from airsquared/master
airsquared Sep 12, 2019
3a20556
Update main.yml
airsquared Sep 12, 2019
2f2b35c
Update main.yml
airsquared Sep 12, 2019
95612ab
Update main.yml
airsquared Sep 12, 2019
6bd04fc
Merge pull request #105 from airsquared/master
airsquared Sep 12, 2019
d8c6bbc
Update main.yml
airsquared Sep 12, 2019
e1bbac9
Update main.yml
airsquared Sep 12, 2019
6076f9a
add timeout
airsquared Sep 12, 2019
6a8b447
Update main.yml
airsquared Sep 12, 2019
7d2bf03
Update main.yml
airsquared Sep 12, 2019
0ca1a73
Update main.yml
airsquared Sep 12, 2019
247ce55
Update main.yml
airsquared Sep 15, 2019
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push]

jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: airsquared/setup-java@master
with:
java-version: '1.8'
javafx: true
- name: Create macOS app
if: matrix.os == 'macOS-latest'
run: ./gradlew createApp
- name: Create Linux tar.gz
if: matrix.os == 'ubuntu-latest'
run: ./gradlew createLinuxTargz
- name: Create Windows exe
if: matrix.os == 'windows-latest'
run: ./gradlew createExe # don't createWindowsInstaller because it requires Inno Setup