Inceptum/platform_jars.sh

8 lines
524 B
Bash
Raw Normal View History

#!/bin/bash
2023-05-05 22:41:23 +02:00
set -xe
2023-05-05 23:19:29 +02:00
pacman -S dpkg fakeroot
gradle --build-cache :launcher-dist:build -Pflavor=fat -Ppublic -Ptimestamp=${CI_PIPELINE_STARTED}
gradle --build-cache :launcher-dist:build :launcher-dist:jpackage -Pflavor=windows -Ppublic -Pcrosscompile -Ptimestamp=${CI_PIPELINE_STARTED}
gradle --build-cache :launcher-dist:build :launcher-dist:jpackage -Pflavor=linux -Ppublic -Ptimestamp=${CI_PIPELINE_STARTED}
2023-05-05 22:41:23 +02:00
gradle --build-cache :launcher-dist:build -Pflavor=macos -Ppublic -Ptimestamp=${CI_PIPELINE_STARTED}
echo Is done!