GitHub Actions: Convert '_' to '-' in $AWS_ECS_CLUSTER_NAME
(backport #10023)
#16340
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_0 | |
- 26 | |
timeout-minutes: 120 | |
steps: | |
- name: CHECKOUT REPOSITORY | |
uses: actions/checkout@v3 | |
- name: MOUNT BAZEL CACHE | |
uses: actions/[email protected] | |
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=-aws,-docker,-mixed-version-cluster \ | |
--build_tests_only \ | |
--verbose_failures | |
summary-test: | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: SUMMARY | |
run: | | |
echo "SUCCESS" |