mirror of https://github.com/status-im/evmc.git
Circle CI: Test only Go 1.9 and the latest (1.12)
This commit is contained in:
parent
6cae99abbc
commit
d8429cc8c2
|
@ -22,7 +22,7 @@ Please visit the [documentation].
|
||||||
| ----------------------- | ------------------- | -------------------
|
| ----------------------- | ------------------- | -------------------
|
||||||
| **C** | C90, C99, C11 | GCC 6+, clang 3.8+
|
| **C** | C90, C99, C11 | GCC 6+, clang 3.8+
|
||||||
| **C++** _(helpers)_[^1] | C++11, C++14, C++17 | 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.
|
[^1]: C++ support is provided by C headers and some optional C++ helpers.
|
||||||
|
|
||||||
|
|
16
circle.yml
16
circle.yml
|
@ -134,9 +134,9 @@ jobs:
|
||||||
git commit -m "Update docs"
|
git commit -m "Update docs"
|
||||||
git push -f "https://$GITHUB_TOKEN@github.com/ethereum/evmc.git" HEAD:gh-pages
|
git push -f "https://$GITHUB_TOKEN@github.com/ethereum/evmc.git" HEAD:gh-pages
|
||||||
|
|
||||||
bindings-go-1.10:
|
bindings-go-latest:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/golang:1.10
|
- image: circleci/golang
|
||||||
steps: &bindings-go-steps
|
steps: &bindings-go-steps
|
||||||
- checkout
|
- checkout
|
||||||
- run:
|
- run:
|
||||||
|
@ -148,16 +148,11 @@ jobs:
|
||||||
go generate -v ./bindings/go/evmc
|
go generate -v ./bindings/go/evmc
|
||||||
go test -v ./bindings/go/evmc
|
go test -v ./bindings/go/evmc
|
||||||
|
|
||||||
bindings-go-1.9:
|
bindings-go-min:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/golang:1.9
|
- image: circleci/golang:1.9
|
||||||
steps: *bindings-go-steps
|
steps: *bindings-go-steps
|
||||||
|
|
||||||
bindings-go-1.11:
|
|
||||||
docker:
|
|
||||||
- image: circleci/golang:1.11
|
|
||||||
steps: *bindings-go-steps
|
|
||||||
|
|
||||||
bindings-rust:
|
bindings-rust:
|
||||||
docker:
|
docker:
|
||||||
- image: rust:1
|
- image: rust:1
|
||||||
|
@ -191,9 +186,8 @@ workflows:
|
||||||
- build-cxx14
|
- build-cxx14
|
||||||
- build-gcc6
|
- build-gcc6
|
||||||
- build-clang3.8
|
- build-clang3.8
|
||||||
- bindings-go-1.11
|
- bindings-go-latest
|
||||||
- bindings-go-1.10
|
- bindings-go-min
|
||||||
- bindings-go-1.9
|
|
||||||
- bindings-rust
|
- bindings-rust
|
||||||
- test-docs
|
- test-docs
|
||||||
- upload-docs:
|
- upload-docs:
|
||||||
|
|
Loading…
Reference in New Issue