From bb8c3bad86c4d3f7e8a80cb5a88fd41853635afe Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Tue, 27 Sep 2022 20:59:11 +0100 Subject: [PATCH] Use golang 1.18.1 to build appimage --- .circleci/config.yml | 6 ++++++ .circleci/template.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 66f30e7d5..fdfcafe7c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -424,6 +424,12 @@ jobs: - checkout - attach_workspace: at: "." + - run: + name: Update Go + command: | + curl -L https://golang.org/dl/go1.18.1.linux-amd64.tar.gz -o /tmp/go.tar.gz && \ + sudo tar -C /usr/local -xvf /tmp/go.tar.gz + - run: go version - run: name: install appimage-builder command: | diff --git a/.circleci/template.yml b/.circleci/template.yml index 6e7a44364..4fe4e4bd3 100644 --- a/.circleci/template.yml +++ b/.circleci/template.yml @@ -424,6 +424,12 @@ jobs: - checkout - attach_workspace: at: "." + - run: + name: Update Go + command: | + curl -L https://golang.org/dl/go1.18.1.linux-amd64.tar.gz -o /tmp/go.tar.gz && \ + sudo tar -C /usr/local -xvf /tmp/go.tar.gz + - run: go version - run: name: install appimage-builder command: |