Skip to content

Commit

Permalink
26.1
Browse files Browse the repository at this point in the history
Build protobuf 2.61

This also changes the versioning scheme to strip the language-specific major version
  • Loading branch information
ogolberg authored Apr 5, 2024
1 parent b249935 commit 971e88b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
proto_tag: 'v3.26.1'
proto_version: '26.1'
USE_BAZEL_VERSION: '6.4.0'
name: Conformance Runner
on: [push]
Expand All @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: protocolbuffers/protobuf
ref: ${{ env.proto_tag }}
ref: v${{ env.proto_version }}
path: protobuf
- name: Bazel cache
uses: actions/cache@v4
Expand All @@ -26,13 +26,13 @@ jobs:
run: bazelisk --output_base=../bazel-cache build conformance/conformance_test_runner
working-directory: protobuf
- name: Copy binary
run: cp bazel-bin/conformance/conformance_test_runner conformance_test_runner-${{ matrix.os }}-${{ env.proto_tag }}
run: cp bazel-bin/conformance/conformance_test_runner conformance_test_runner-${{ matrix.os }}-${{ env.proto_version }}
working-directory: protobuf
- name: Archive binary
uses: actions/upload-artifact@v4
with:
name: conformance_test_runner-${{ matrix.os }}-${{ env.proto_tag }}
path: protobuf/conformance_test_runner-${{ matrix.os }}-${{ env.proto_tag }}
name: conformance_test_runner-${{ matrix.os }}-${{ env.proto_version }}
path: protobuf/conformance_test_runner-${{ matrix.os }}-${{ env.proto_version }}
release-conformance-runner:
runs-on: ubuntu-latest
needs: build-conformance-runner
Expand Down

0 comments on commit 971e88b

Please sign in to comment.