Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

upgrade go versions in circle ci #324

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 3 additions & 29 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,34 +57,10 @@ commands:

jobs:
# test performs all package tests from Kelp
test_1_10:
test_1_13:
working_directory: /go/src/github.com/stellar/kelp
docker:
- image: circleci/golang:1.10
- image: franzsee/ccxt-rest:v0.0.4
command: ["node", "/usr/local/bin/ccxt-rest"]

steps:
- install_deps
- build_kelp
- test_kelp

test_1_11:
working_directory: /go/src/github.com/stellar/kelp
docker:
- image: circleci/golang:1.11
- image: franzsee/ccxt-rest:v0.0.4
command: ["node", "/usr/local/bin/ccxt-rest"]

steps:
- install_deps
- build_kelp
- test_kelp

test_1_12:
working_directory: /go/src/github.com/stellar/kelp
docker:
- image: circleci/golang:1.12
- image: circleci/golang:1.13
- image: franzsee/ccxt-rest:v0.0.4
command: ["node", "/usr/local/bin/ccxt-rest"]

Expand All @@ -97,6 +73,4 @@ workflows:
version: 2
build-and-test:
jobs:
- test_1_10
- test_1_11
- test_1_12
- test_1_13
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ _Note for Windows Users: You should use a [Bash Shell][bash] to follow the steps

To compile Kelp from source:

1. [Download][golang-download] and [setup][golang-setup] Golang.
1. [Download][golang-download] and [setup][golang-setup] Golang _v1.13 or later_.
2. [Install Glide][glide-install] for dependency management
* `curl https://glide.sh/get | sh`
3. Install [Yarn][yarn-install] and [NodeJs][nodejs-install] to build the Kelp GUI
Expand Down