Run bazel/make equivalence checks on all release branches #14284
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
- v3.12.x | |
- v3.11.x | |
- v3.10.x | |
- v3.9.x | |
- v3.8.x | |
- bump-otp-for-oci | |
- bump-rbe-* | |
- bump-rules_erlang | |
paths: | |
- 'deps/**' | |
- 'scripts/**' | |
- Makefile | |
- plugins.mk | |
- rabbitmq-components.mk | |
- .bazelrc | |
- .bazelversion | |
- BUILD.* | |
- '*.bzl' | |
- '*.bazel' | |
- .github/workflows/test.yaml | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
otp_version_id: | |
- 25_3 | |
- 26 | |
timeout-minutes: 120 | |
steps: | |
- name: CHECKOUT REPOSITORY | |
uses: actions/checkout@v3 | |
- name: MOUNT BAZEL CACHE | |
uses: actions/cache@v3.3.1 | |
with: | |
path: "/home/runner/repo-cache/" | |
key: ${{ runner.os }}-repo-cache-${{ hashFiles('MODULE.bazel','WORKSPACE','bazel/bzlmod/secondary_umbrella.bzl') }} | |
restore-keys: | | |
${{ runner.os }}-repo-cache- | |
- name: CONFIGURE BAZEL | |
run: | | |
if [ -n "${{ secrets.BUILDBUDDY_API_KEY }}" ]; then | |
cat << EOF >> user.bazelrc | |
build:buildbuddy --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_API_KEY }} | |
EOF | |
fi | |
cat << EOF >> user.bazelrc | |
build:buildbuddy --build_metadata=ROLE=CI | |
build:buildbuddy --build_metadata=VISIBILITY=PUBLIC | |
build:buildbuddy --repository_cache=/home/runner/repo-cache/ | |
build:buildbuddy --color=yes | |
build:buildbuddy --disk_cache= | |
EOF | |
bazelisk info release | |
#! - name: Setup tmate session | |
#! uses: mxschmitt/action-tmate@v3 | |
- name: RUN TESTS | |
run: | | |
sudo sysctl -w net.ipv4.tcp_keepalive_time=60 | |
sudo ethtool -K eth0 tso off gso off gro off tx off rx off lro off | |
bazelisk test //... \ | |
--config=rbe-${{ matrix.otp_version_id }} \ | |
--test_tag_filters=-exclusive,-aws,-docker,-mixed-version-cluster \ | |
--build_tests_only \ | |
--verbose_failures | |
test-exclusive: | |
name: Test (Exclusive Tests) | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- erlang_version: "25.3" | |
elixir_version: 1.14.5 | |
- erlang_version: "26.0" | |
elixir_version: 1.14.5 | |
timeout-minutes: 60 | |
steps: | |
- name: CHECKOUT REPOSITORY | |
uses: actions/checkout@v3 | |
- name: CONFIGURE OTP & ELIXIR | |
uses: erlef/setup-beam@v1.16 | |
with: | |
otp-version: ${{ matrix.erlang_version }} | |
elixir-version: ${{ matrix.elixir_version }} | |
- name: MOUNT BAZEL CACHE | |
uses: actions/cache@v3.3.1 | |
with: | |
path: "/home/runner/repo-cache/" | |
key: ${{ runner.os }}-repo-cache-${{ hashFiles('MODULE.bazel','WORKSPACE','bazel/bzlmod/secondary_umbrella.bzl') }} | |
restore-keys: | | |
${{ runner.os }}-repo-cache- | |
- name: CONFIGURE BAZEL | |
run: | | |
ERLANG_HOME="$(dirname $(dirname $(which erl)))" | |
ELIXIR_HOME="$(dirname $(dirname $(which iex)))" | |
if [ -n "${{ secrets.BUILDBUDDY_API_KEY }}" ]; then | |
cat << EOF >> user.bazelrc | |
build:buildbuddy --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_API_KEY }} | |
EOF | |
fi | |
cat << EOF >> user.bazelrc | |
build:buildbuddy --build_metadata=ROLE=CI | |
build:buildbuddy --build_metadata=VISIBILITY=PUBLIC | |
build:buildbuddy --repository_cache=/home/runner/repo-cache/ | |
build:buildbuddy --color=yes | |
build:buildbuddy --disk_cache= | |
build --@rules_erlang//:erlang_version=${{ matrix.erlang_version }} | |
build --@rules_erlang//:erlang_home=${ERLANG_HOME} | |
build --//:elixir_home=${ELIXIR_HOME} | |
EOF | |
#! - name: Setup tmate session | |
#! uses: mxschmitt/action-tmate@v3 | |
- name: RUN EXCLUSIVE TESTS | |
run: | | |
bazelisk test //... \ | |
--config=buildbuddy \ | |
--test_tag_filters=exclusive,-aws,-docker,-mixed-version-cluster \ | |
--build_tests_only \ | |
--test_env RABBITMQ_CT_HELPERS_DELETE_UNUSED_NODES=true \ | |
--verbose_failures | |
summary-test: | |
needs: | |
- test | |
- test-exclusive | |
runs-on: ubuntu-latest | |
steps: | |
- name: SUMMARY | |
run: | | |
echo "SUCCESS" |