Skip to content

Add workflow

Add workflow #23

Workflow file for this run

name: Master updated
on:
push:
branches:
- 'master'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup Java
run: |
sudo apt-get -q update
sudo apt-get -yq install gnupg curl
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9
curl -O https://cdn.azul.com/zulu/bin/zulu11.68.17-ca-fx-jdk11.0.21-linux_amd64.deb
sudo apt-get -y install ./zulu11.68.17-ca-fx-jdk11.0.21-linux_amd64.deb
- name: Environment setup
run: |
sudo apt install -y wine xvfb
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine32
- name: Checkout
uses: actions/checkout@v4
- name: Build
env:
DISPLAY: :99
run: |
echo "Using display $DISPLAY"
Xvfb $DISPLAY &
wine wineboot --init
wine innosetup-5.6.1.exe /VERYSILENT /SUPPRESSMSGBOXES
cd Quelea
chmod +x gradlew
chmod +x build-install.sh
ls -l
./gradlew -Dnightly=true -Dversionsuffix=CI-UNSTABLE clean dist