#585 freetype statically linked. #72
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Linux nightly | |
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| build-linux-binary: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '25' | |
| distribution: 'liberica' | |
| cache: maven | |
| - name: Build tcMenuGenerator binary | |
| run: | | |
| mvn -B install -DskipTests -Dgpg.skip=true --file api/tcMenuJavaApi/pom.xml | |
| mvn -B install -DskipTests -Dgpg.skip=true --file api/embedCONTROLCore/pom.xml | |
| mvn -B install -DskipTests -Dgpg.skip=true --file archive/tcMenuGenerator/pom.xml | |
| cd archive/tcMenuGenerator/target | |
| cp classes/img/tcMenuDesigner.ico . | |
| jpackage -n tcMenuDesigner \ | |
| -p jfx/deps \ | |
| --input jfx/app \ | |
| --icon ./classes/img/menu-icon.png \ | |
| --verbose \ | |
| --license-file ../../LICENSE \ | |
| --linux-app-category Development \ | |
| --linux-menu-group "Development;Utility;" \ | |
| --java-options "-Dprism.lcdtext=false -Djava.library.path=$APPDIR/lin" \ | |
| --app-version 99.99.99 \ | |
| --add-modules "jdk.crypto.cryptoki" \ | |
| -m com.thecoderscorner.tcmenu.menuEditorUI/com.thecoderscorner.menu.editorui.cli.TcMenuDesignerCmd | |
| - name: Build Bitmap and Font editor | |
| run: | | |
| mvn -B install -DskipTests -Dgpg.skip=true --file font-bmp-editor/pom.xml | |
| cd font-bmp-editor/target | |
| jpackage -n BitMapEdit -p jfx/deps --input jfx/app \ | |
| --icon ./classes/img/menu-icon.png --app-version 99.99.99 --verbose \ | |
| --java-options '-Dprism.lcdtext=false -Djava.library.path=$APPDIR/deb' \ | |
| --add-modules "jdk.crypto.cryptoki" \ | |
| --linux-app-category Development \ | |
| --linux-menu-group "Development;Utility;" \ | |
| -m com.thecoderscorner.bmped/com.thecoderscorner.bmped.BitMapEditApp | |
| - name: Upload DEB artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: tcmenudesigner_NIGHTLY_linux_deb-${{ github.sha }} | |
| path: | | |
| archive/tcMenuGenerator/target/tcmenudesigner_99.99.99_amd64.deb | |
| - name: Upload macOS BitmapFontEditor artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bitmapedit-NIGHTLY_macos-${{ github.sha }}.dmg | |
| path: | | |
| font-bmp-editor/target/bitmapedit_99.99.99_amd64.deb |