From dab48fcd1398a05fb3a0a592ab0ac8a5e6d6a679 Mon Sep 17 00:00:00 2001 From: NotNite Date: Sat, 5 Oct 2024 14:43:02 -0400 Subject: [PATCH] Remove tests as they don't work in CI --- AppImageBuilder.yml | 19 +------------------ build-linux.sh | 2 +- src/main.rs | 2 -- 3 files changed, 2 insertions(+), 21 deletions(-) diff --git a/AppImageBuilder.yml b/AppImageBuilder.yml index 8b75d14..e6fc33c 100644 --- a/AppImageBuilder.yml +++ b/AppImageBuilder.yml @@ -12,24 +12,7 @@ AppDir: files: include: - - usr/bin/moonlight-installer - - test: - fedora-30: - image: appimagecrafters/tests-env:fedora-30 - command: ./AppRun - debian-stable: - image: appimagecrafters/tests-env:debian-stable - command: ./AppRun - archlinux-latest: - image: appimagecrafters/tests-env:archlinux-latest - command: ./AppRun - centos-7: - image: appimagecrafters/tests-env:centos-7 - command: ./AppRun - ubuntu-xenial: - image: appimagecrafters/tests-env:ubuntu-xenial - command: ./AppRun + - usr/bin/moonlight-installer AppImage: arch: x86_64 diff --git a/build-linux.sh b/build-linux.sh index 3d32022..7bf2a37 100755 --- a/build-linux.sh +++ b/build-linux.sh @@ -26,4 +26,4 @@ echo "Building AppImage..." ./appimage-builder-x86_64.AppImage --recipe ./AppImageBuilder.yml # Move the appimage into a predictable location for CI -mv "./moonlight installer-*-x86_64.AppImage" ./moonlight-installer-x86_64.AppImage +mv ./moonlight\ installer-*-x86_64.AppImage ./moonlight-installer-x86_64.AppImage diff --git a/src/main.rs b/src/main.rs index 9a12a19..f6210a1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,5 @@ fn main() -> anyhow::Result<()> { ) .map_err(|e| anyhow::anyhow!(format!("Error running app: {:?}", e)))?; - println!("Hello, world!"); - Ok(()) }