Skip to content

Commit fc780ef

Browse files
author
Maurizio Branca
authored
[skip changelog] Remove protobuf workaround on AppVeyor (#329)
* Upgrade protobuf to v3.9.1 for AppVeyor We can now switch back to a current version of the protocol since the PR protocolbuffers/protobuf#5044 has been merged to master a released. * Bump drone.io Docker image from 1.0 to 1.1 (#329)
1 parent 39660d4 commit fc780ef

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.drone.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ name: test
44

55
steps:
66
- name: lint
7-
image: arduino/arduino-cli:drone-1.0
7+
image: arduino/arduino-cli:drone-1.1.0
88
commands:
99
# Check if the Go code is properly formatted and run the linter
1010
- task check
1111
# Ensure protobufs compile without errors
1212
- task protoc
1313

1414
- name: build
15-
image: arduino/arduino-cli:drone-1.0
15+
image: arduino/arduino-cli:drone-1.1.0
1616
commands:
1717
- task build
1818

1919
- name: test
20-
image: arduino/arduino-cli:drone-1.0
20+
image: arduino/arduino-cli:drone-1.1.0
2121
commands:
2222
- task test-unit
2323
- task test-legacy
2424

2525
- name: integration
26-
image: arduino/arduino-cli:drone-1.0
26+
image: arduino/arduino-cli:drone-1.1.0
2727
commands:
2828
- pip install -r test/requirements.txt
2929
- task test-integration
@@ -32,7 +32,7 @@ steps:
3232
# Contrary to other CI platforms, uploading reports to Codecov requires Drone to provide a token.
3333
# To avoid exposing the Codecov token to external PRs, we only upload coverage when we merge on
3434
# `master`.
35-
image: arduino/arduino-cli:drone-1.0
35+
image: arduino/arduino-cli:drone-1.1.0
3636
environment:
3737
CODECOV_TOKEN:
3838
from_secret: codecov_token

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ install:
2929
# protobuf tooling needed at test time. We use a very old version of the compiler
3030
# because of this: https://github.com/protocolbuffers/protobuf/issues/3957
3131
- go get github.com/golang/protobuf/protoc-gen-go
32-
- curl -o protoc.zip -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.4.0/protoc-3.4.0-win32.zip
32+
- curl -o protoc.zip -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.9.1/protoc-3.9.1-win32.zip
3333
- 7z x protoc.zip -o%PROTOC_PATH%
3434

3535
test_script:

0 commit comments

Comments
 (0)