-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This build file, notably, uses ShellCheck v0.10, but is otherwise similar to the other targets.
- Loading branch information
1 parent
ad14324
commit 98b8041
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: 1 | ||
|
||
project: | ||
name: com.github.theassassin.appimagecraft | ||
version_command: cd "$PROJECT_ROOT" && git rev-parse --short HEAD | ||
|
||
build: | ||
null: | ||
|
||
scripts: | ||
post_build: | ||
# note: only using this multiline syntax allows the use of a literal colon in the warning message with PyYAML | ||
- | | ||
wget https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.aarch64.tar.xz -O - | \ | ||
tar xJ -C "$BUILD_DIR" --strip-components=1 | ||
appimage: | ||
arch: aarch64 | ||
|
||
linuxdeploy: | ||
plugins: | ||
- conda | ||
extra_args: -i "$PROJECT_ROOT"/deployment/appimagecraft.svg -d "$PROJECT_ROOT"/deployment/appimagecraft.desktop --custom-apprun "$PROJECT_ROOT"/deployment/AppRun.sh | ||
environment: | ||
PIP_REQUIREMENTS: . | ||
ARCH: aarch64 | ||
raw_environment: | ||
- PIP_WORKDIR="$PROJECT_ROOT" | ||
- OUTPUT=appimagecraft-"$ARCH".AppImage |