diff options
author | Ayke van Laethem <[email protected]> | 2020-05-13 02:11:04 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-05-13 08:29:40 +0200 |
commit | aa40ddc48bc32bf5178edecc5c2ff83afa808f17 (patch) | |
tree | e5faef83d1b7806a294c9ce0a2b5af7b042f0a44 /.circleci | |
parent | 6bcb40fe01d83451eafe42a195c4acf1b186b2dd (diff) | |
download | tinygo-aa40ddc48bc32bf5178edecc5c2ff83afa808f17.tar.gz tinygo-aa40ddc48bc32bf5178edecc5c2ff83afa808f17.zip |
ci: do not install the SiFive toolchain
We don't need it anymore since we use lld to link RISC-V binaries.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 498861027..37c6d2304 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 }} |