We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following provided official reference https://github.com/gluonhq/hello-gluon-ci/blob/master/.github/workflows/windows.yml I set up Github Actions to package a JavaFX app at https://github.com/nicolabeghin/sap-commerce-cloud-management-api-gui/blob/native/.github/workflows/gradle.yml#L86
While Linux and MacOSX build successfully, the Windows one fails with
Error running candle to generate wixobj
I can see from https://github.com/gluonhq/substrate/blob/master/src/main/java/com/gluonhq/substrate/util/windows/MSIBundler.java#L148 it's because Wix Compiler is not found, therefore I assume it's missing something in the Github Action example?
if (candle.runProcess("Wix Compiler") != 0) { throw new IOException("Error running candle to generate wixobj"); }
Whole stacktrace available at https://github.com/nicolabeghin/sap-commerce-cloud-management-api-gui/actions/runs/9382009047/job/25832508175
Also checked similar issue gluonhq/substrate#1085 by adding additional build.gradle properties but still no luck
thanks nicola
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following provided official reference https://github.com/gluonhq/hello-gluon-ci/blob/master/.github/workflows/windows.yml I set up Github Actions to package a JavaFX app at https://github.com/nicolabeghin/sap-commerce-cloud-management-api-gui/blob/native/.github/workflows/gradle.yml#L86
While Linux and MacOSX build successfully, the Windows one fails with
I can see from
https://github.com/gluonhq/substrate/blob/master/src/main/java/com/gluonhq/substrate/util/windows/MSIBundler.java#L148 it's because Wix Compiler is not found, therefore I assume it's missing something in the Github Action example?
Whole stacktrace available at https://github.com/nicolabeghin/sap-commerce-cloud-management-api-gui/actions/runs/9382009047/job/25832508175
Also checked similar issue gluonhq/substrate#1085 by adding additional build.gradle properties but still no luck
thanks
nicola
The text was updated successfully, but these errors were encountered: