From d8429cc8c27f1935bf1a51a009efc41f99cc8380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 13 Mar 2019 22:29:58 +0100 Subject: [PATCH] Circle CI: Test only Go 1.9 and the latest (1.12) --- README.md | 2 +- circle.yml | 16 +++++----------- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 88d23dc..a27c500 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Please visit the [documentation]. | ----------------------- | ------------------- | ------------------- | **C** | C90, C99, C11 | GCC 6+, clang 3.8+ | **C++** _(helpers)_[^1] | C++11, C++14, C++17 | GCC 6+, clang 3.8+ -| **Go** _(bindings)_ | 1.9, 1.10, 1.11 | +| **Go** _(bindings)_ | 1.9 - 1.12 | [^1]: C++ support is provided by C headers and some optional C++ helpers. diff --git a/circle.yml b/circle.yml index 9d05756..d47ebbc 100644 --- a/circle.yml +++ b/circle.yml @@ -134,9 +134,9 @@ jobs: git commit -m "Update docs" git push -f "https://$GITHUB_TOKEN@github.com/ethereum/evmc.git" HEAD:gh-pages - bindings-go-1.10: + bindings-go-latest: docker: - - image: circleci/golang:1.10 + - image: circleci/golang steps: &bindings-go-steps - checkout - run: @@ -148,16 +148,11 @@ jobs: go generate -v ./bindings/go/evmc go test -v ./bindings/go/evmc - bindings-go-1.9: + bindings-go-min: docker: - image: circleci/golang:1.9 steps: *bindings-go-steps - bindings-go-1.11: - docker: - - image: circleci/golang:1.11 - steps: *bindings-go-steps - bindings-rust: docker: - image: rust:1 @@ -191,9 +186,8 @@ workflows: - build-cxx14 - build-gcc6 - build-clang3.8 - - bindings-go-1.11 - - bindings-go-1.10 - - bindings-go-1.9 + - bindings-go-latest + - bindings-go-min - bindings-rust - test-docs - upload-docs: