Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.3 KiB
78 lines
3.3 KiB
2 years ago
|
name: Ruby Tests
|
||
2 years ago
|
|
||
|
on:
|
||
|
workflow_call:
|
||
|
inputs:
|
||
|
safe-checkout:
|
||
|
required: true
|
||
|
description: "The SHA key for the commit we want to run over"
|
||
|
type: string
|
||
|
|
||
|
jobs:
|
||
2 years ago
|
linux:
|
||
2 years ago
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
include:
|
||
|
- { name: Ruby 2.6, ruby: ruby-2.6.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 2.7, ruby: ruby-2.7.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 3.0, ruby: ruby-3.0.2, bazel: 5.1.1}
|
||
|
- { name: Ruby 3.1, ruby: ruby-3.1.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 3.2, ruby: ruby-3.2.0, bazel: 5.1.1}
|
||
|
- { name: JRuby 9.2, ruby: jruby-9.2.20.1, bazel: 5.1.1}
|
||
|
- { name: JRuby 9.3, ruby: jruby-9.3.4.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 2.6 (Bazel6), ruby: ruby-2.6.0, bazel: 6.0.0}
|
||
|
- { name: JRuby 9.2 (Bazel6), ruby: jruby-9.2.20.1, bazel: 6.0.0}
|
||
2 years ago
|
|
||
2 years ago
|
name: Linux ${{ matrix.name }}
|
||
|
runs-on: ubuntu-latest
|
||
2 years ago
|
steps:
|
||
|
- name: Checkout pending changes
|
||
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
||
|
with:
|
||
|
ref: ${{ inputs.safe-checkout }}
|
||
|
- name: Run tests
|
||
|
uses: ./.github/actions/bazel-docker
|
||
|
with:
|
||
|
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/ruby:${{ matrix.ruby }}-${{ matrix.bazel }}-75e79f791b96e056086f43ace729cf3ebf9a9f5d
|
||
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
||
|
bazel-cache: ruby_linux/${{ matrix.ruby }}_${{ matrix.bazel }}
|
||
|
bazel: test //ruby/... //ruby/tests:ruby_version --test_env=KOKORO_RUBY_VERSION
|
||
|
|
||
|
test_ruby_gems:
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
include:
|
||
|
- { name: Ruby 2.6, ruby: ruby-2.6.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 2.7, ruby: ruby-2.7.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 3.0, ruby: ruby-3.0.2, bazel: 5.1.1}
|
||
|
- { name: Ruby 3.1, ruby: ruby-3.1.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 3.2, ruby: ruby-3.2.0, bazel: 5.1.1}
|
||
|
- { name: JRuby 9.2, ruby: jruby-9.2.20.1, bazel: 5.1.1}
|
||
|
- { name: JRuby 9.3, ruby: jruby-9.3.4.0, bazel: 5.1.1}
|
||
|
- { name: Ruby 2.6 (Bazel6), ruby: ruby-2.6.0, bazel: 6.0.0}
|
||
|
- { name: JRuby 9.2 (Bazel6), ruby: jruby-9.2.20.1, bazel: 6.0.0}
|
||
|
name: Install ${{ matrix.name }}
|
||
|
runs-on: ubuntu-latest
|
||
2 years ago
|
steps:
|
||
|
- name: Checkout pending changes
|
||
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
||
|
with:
|
||
|
ref: ${{ inputs.safe-checkout }}
|
||
|
- name: Run tests
|
||
|
uses: ./.github/actions/bazel-docker
|
||
|
with:
|
||
|
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/ruby:${{ matrix.ruby }}-${{ matrix.bazel }}-75e79f791b96e056086f43ace729cf3ebf9a9f5d
|
||
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
||
|
bazel-cache: ruby_install/${{ matrix.ruby }}_${{ matrix.bazel }}
|
||
|
bash: >
|
||
|
bazel --version;
|
||
|
ruby --version;
|
||
|
bazel build //ruby:release //:protoc $BAZEL_FLAGS;
|
||
|
gem install bazel-bin/ruby/google-protobuf-*;
|
||
|
bazel-bin/protoc --proto_path=src --proto_path=ruby/tests --proto_path=ruby --ruby_out=ruby tests/test_import_proto2.proto;
|
||
|
bazel-bin/protoc --proto_path=src --proto_path=ruby/tests --proto_path=ruby --ruby_out=ruby tests/basic_test.proto;
|
||
|
ruby ruby/tests/basic.rb
|
||
2 years ago
|
|