You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm using the gnome extension to build my Java application, which works fine for armhf and amd64, but my application fails to build on s390x and ppc64el with the following error:
Failed to install or refresh snap 'gnome-42-2204-sdk'.
'gnome-42-2204-sdk' does not exist or is not available on channel 'latest/stable'.
Use `snap info gnome-42-2204-sdk` to get a list of channels the snap is available on.
What do you think I should do next? Is the gnome extension never going to work for those architectures?
Here's my snapcraft.yml file:
name: openrocketadopt-info: openrocketgrade: stablesummary: A free, fully featured model rocket simulator.description: | OpenRocket is a free, fully featured model rocket simulator that allows you to design and simulate your rockets before actually building and flying them. The main features include * Six-degree-of-freedom flight simulation * Automatic design optimization * Realtime simulated altitude, velocity and acceleration display * Staging and clustering support * Cross-platform (Java-based) * Read more about it on the OpenRocket.info.license: GPL-3.0base: core22confinement: strictplugs:
dot-java-user-prefs-openrocket:
interface: personal-filesread:
- $HOME/.java/.userPrefs/OpenRocketdot-openrocket:
interface: personal-fileswrite:
- $HOME/.openrocketarchitectures:
- build-on: [amd64]
- build-on: [arm64]
- build-on: [armhf]
- build-on: [ppc64el]
- build-on: [s390x]apps:
openrocket:
extensions: [gnome]command: bin/launcherplugs:
- home
- network
- cups-control
- opengl
- dot-java-user-prefs-openrocket
- dot-openrocketenvironment:
JAVA_HOME: "$SNAP/usr/lib/jvm/java-17-openjdk-$CRAFT_TARGET_ARCH"parts:
openrocket:
plugin: antbuild-packages:
- ant
- ant-contrib
- ant-optional
- openjdk-17-jdk
- openjdk-17-jresource: .source-type: gitant-build-targets:
- clean
- check
- unittest
- jaroverride-pull: | # Override the pull in order to set the version and the grade. # In the future, the releases can be annotated tags and snapcraft # will use those for the version numbers. # # This can be extended to other parts of OpenRocket (to use the # git describe --tags command) but the build should be updated at # the same time so its consistent across all artifacts. Will defer # that to a later pull request. # # Until then, just use the build.version value craftctl default VERSION=$(cat core/resources/build.properties | awk -F'=' '/build\.version/ { print $2 }') craftctl set version="$VERSION"override-build: | craftctl default mv swing/build/jar/OpenRocket.jar $CRAFT_PART_INSTALL/OpenRocket.jarstage-packages:
- openjdk-17-jdk
- openjdk-17-jre
- ca-certificates
- ca-certificates-javaprime:
- -usr/lib/jvm/java-*/lib/security/cacerts
- -usr/lib/jvm/java-*/jre/lib/security/cacerts
- -usr/lib/jvm/java-*/lib/security/blacklisted.certslauncher:
plugin: dumpsource: snap/localorganize:
'launcher': 'bin/'
Thanks for any help!
The text was updated successfully, but these errors were encountered:
Hi, I'm using the gnome extension to build my Java application, which works fine for
armhf
andamd64
, but my application fails to build ons390x
andppc64el
with the following error:What do you think I should do next? Is the gnome extension never going to work for those architectures?
Here's my
snapcraft.yml
file:Thanks for any help!
The text was updated successfully, but these errors were encountered: