From aa40ddc48bc32bf5178edecc5c2ff83afa808f17 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Wed, 13 May 2020 02:11:04 +0200 Subject: [PATCH] ci: do not install the SiFive toolchain We don't need it anymore since we use lld to link RISC-V binaries. --- .circleci/config.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 49886102..37c6d230 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -294,11 +294,6 @@ commands: tar -C /usr/local/opt -xf /tmp/tinygo.darwin-amd64.tar.gz ln -s /usr/local/opt/tinygo/bin/tinygo /usr/local/bin/tinygo tinygo version - - run: - name: "Download SiFive GNU toolchain" - command: | - curl -O https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.2.0-2019.05.3-x86_64-apple-darwin.tar.gz - sudo tar -C /usr/local --strip-components=1 -xf riscv64-unknown-elf-gcc-8.2.0-2019.05.3-x86_64-apple-darwin.tar.gz - run: make smoketest AVR=0 - save_cache: key: go-cache-macos-v2-{{ checksum "go.mod" }}-{{ .Environment.CIRCLE_BUILD_NUM }}