From 155e43383418d5c0347703373ccdd6840508375d Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 6 Mar 2021 16:32:44 +0100 Subject: [PATCH] CI: Disable snap job --- .gitlab-ci.yml | 66 +++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 136d4cdb..2e497720 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -168,40 +168,40 @@ build_linux: - build/linux/release/bundle/ allow_failure: true -snap:edge: - stage: release - image: "snapcore/snapcraft" - before_script: - - apt update && apt install git curl unzip clang cmake build-essential ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev -y - - git clone https://github.com/flutter/flutter.git - - export PATH="$PATH:`pwd`/flutter/bin" - variables: - SNAPCRAFT_LOGIN_FILE: ${SNAPCRAFT_LOGIN_FILE} - only: - - main - script: [./scripts/publish-snap-edge.sh] - needs: ["build_linux"] - artifacts: - paths: - - "./*.snap" - when: on_success - allow_failure: true +#snap:edge: +# stage: release +# image: "snapcore/snapcraft" +# before_script: +# - apt update && apt install git curl unzip clang cmake build-essential ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev -y +# - git clone https://github.com/flutter/flutter.git +# - export PATH="$PATH:`pwd`/flutter/bin" +# variables: +# SNAPCRAFT_LOGIN_FILE: ${SNAPCRAFT_LOGIN_FILE} +# only: +# - main +# script: [./scripts/publish-snap-edge.sh] +# needs: ["build_linux"] +# artifacts: +# paths: +# - "./*.snap" +# when: on_success +# allow_failure: true -snap:publish: - stage: release - image: "snapcore/snapcraft" - variables: - SNAPCRAFT_LOGIN_FILE: ${SNAPCRAFT_LOGIN_FILE} - only: - - tags - script: [./scripts/publish-snap-stable.sh] - needs: ["build_linux"] - artifacts: - paths: - - "./*.snap" - when: on_success - expire_in: 1 week - allow_failure: true +#snap:publish: +# stage: release +# image: "snapcore/snapcraft" +# variables: +# SNAPCRAFT_LOGIN_FILE: ${SNAPCRAFT_LOGIN_FILE} +# only: +# - tags +# script: [./scripts/publish-snap-stable.sh] +# needs: ["build_linux"] +# artifacts: +# paths: +# - "./*.snap" +# when: on_success +# expire_in: 1 week +# allow_failure: true update-dependencies: stage: coverage