mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-26 21:24:22 +00:00
24fba63d8c
Bazel 7 is the latest release, but it cannot build Protobuf 25.1: ERROR: no such package '@@com_google_protobuf//': The repository '@@com_google_protobuf' could not be resolved: Repository '@@com_google_protobuf' is not defined Change-Id: I5a43ac6ea157056b6e40f1ccc2621b7808613b55 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/552075 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Lasse Folger <lassefolger@google.com>
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
on: [push]
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
# This is just a version to compile the integration_test.go; see
|
|
# golangVersions in that file for the list of actual Go versions used.
|
|
go-version: [1.x]
|
|
os: [ubuntu-latest] # TODO: Add [macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install Linux dependencies
|
|
if: runner.os == 'Linux'
|
|
run: sudo apt-get -y install autoconf automake libtool curl make g++ unzip
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Install Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
.cache
|
|
~/.cache/bazel
|
|
key: ${{ runner.os }}-${{ hashFiles('integration_test.go') }}
|
|
- name: Test
|
|
env:
|
|
# Protobuf 25 does not yet support Bazel 7
|
|
USE_BAZEL_VERSION: latest-1
|
|
run: go test -run='^TestIntegration$' -v -timeout=60m -count=1 -failfast "$@"
|