Compare commits
2 commits
aa6e93c216
...
3ee9dce806
Author | SHA1 | Date | |
---|---|---|---|
3ee9dce806 | |||
3e46f1368e |
2 changed files with 4 additions and 4 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
||||||
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y rpm libfuse2 flatpak flatpak-builder appstream
|
sudo apt-get install -y rpm libfuse2 flatpak flatpak-builder appstream make
|
||||||
flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||||
- name: Install WiX Toolset
|
- name: Install WiX Toolset
|
||||||
if: ${{ matrix.os == 'windows-latest' }}
|
if: ${{ matrix.os == 'windows-latest' }}
|
||||||
|
@ -60,7 +60,7 @@ jobs:
|
||||||
shell: powershell
|
shell: powershell
|
||||||
- name: Build Haveno Installer
|
- name: Build Haveno Installer
|
||||||
run: |
|
run: |
|
||||||
./gradlew clean build --refresh-keys --refresh-dependencies
|
./gradlew :core:compileJava :desktop:build -x test -x checkstyleMain -x checkstyleTest
|
||||||
./gradlew packageInstallers
|
./gradlew packageInstallers
|
||||||
working-directory: .
|
working-directory: .
|
||||||
|
|
||||||
|
|
|
@ -277,7 +277,7 @@ task packageInstallers {
|
||||||
" --java-options --add-opens=java.base/java.lang.reflect=ALL-UNNAMED" +
|
" --java-options --add-opens=java.base/java.lang.reflect=ALL-UNNAMED" +
|
||||||
" --java-options --add-opens=javafx.graphics/com.sun.javafx.scene=ALL-UNNAMED" +
|
" --java-options --add-opens=javafx.graphics/com.sun.javafx.scene=ALL-UNNAMED" +
|
||||||
" --java-options -Djava.net.preferIPv4Stack=true" +
|
" --java-options -Djava.net.preferIPv4Stack=true" +
|
||||||
" --arguments --baseCurrencyNetwork=XMR_STAGENET"
|
" --arguments --baseCurrencyNetwork=XMR_MAINNET"
|
||||||
// Warning: this will cause guice reflection exceptions and lead to issues with the guice internal cache
|
// Warning: this will cause guice reflection exceptions and lead to issues with the guice internal cache
|
||||||
// resulting in the UI not loading
|
// resulting in the UI not loading
|
||||||
// " --java-options -Djdk.module.illegalAccess=deny" +
|
// " --java-options -Djdk.module.illegalAccess=deny" +
|
||||||
|
@ -320,7 +320,7 @@ task packageInstallers {
|
||||||
|
|
||||||
// Package deb
|
// Package deb
|
||||||
executeCmd(jPackageFilePath + commonOpts + linuxOpts +
|
executeCmd(jPackageFilePath + commonOpts + linuxOpts +
|
||||||
" --linux-deb-maintainer noreply@haveno.exchange" +
|
" --linux-deb-maintainer david.potter@gmail.com" +
|
||||||
" --type deb")
|
" --type deb")
|
||||||
|
|
||||||
// Clean jpackage temp folder, needs to be empty for the next packaging step (AppImage)
|
// Clean jpackage temp folder, needs to be empty for the next packaging step (AppImage)
|
||||||
|
|
Loading…
Reference in a new issue