From d33647dd972c8a118be45af6f4609a51fbc85dc5 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 10 Oct 2020 17:14:06 -0700 Subject: [PATCH] ci: move source archive to run only for appimage build The nightly builds seem to often trip over each other when uploading the source tarball from ubuntu20. Restrict it to being built only on the appimage build (ubuntu16). --- ci/deploy.sh | 2 -- ci/generate-workflows.py | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/deploy.sh b/ci/deploy.sh index f26edb394..eb727fe39 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -134,8 +134,6 @@ EOF rm -rf pkg ;; esac - ./ci/source-archive.sh - ;; *) ;; diff --git a/ci/generate-workflows.py b/ci/generate-workflows.py index f0c863fc7..ac613da3e 100755 --- a/ci/generate-workflows.py +++ b/ci/generate-workflows.py @@ -251,6 +251,7 @@ cargo build --all --release""", def package(self): steps = [RunStep("Package", "bash ci/deploy.sh")] if self.app_image: + steps.append(RunStep("Source Tarball", "bash ci/source-archive.sh")) steps.append(RunStep("Build AppImage", "bash ci/appimage.sh")) return steps