rabbit_mgmt_wm_version: pass Dialyzer #1003
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 Management UI with Selenium for PRs | ||
on: | ||
pull_request: | ||
paths: | ||
- 'deps/**' | ||
- 'selenium/**' | ||
- .github/workflows/test-management-ui-for-pr.yaml | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
selenium: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
erlang_version: | ||
- "26.2" | ||
browser: | ||
- chrome | ||
include: | ||
- erlang_version: "26.2" | ||
elixir_version: 1.15.7 | ||
env: | ||
SELENIUM_DIR: selenium | ||
DOCKER_NETWORK: rabbitmq_net | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Configure OTP & Elixir | ||
uses: erlef/setup-beam@v1.17 | ||
with: | ||
otp-version: ${{ matrix.erlang_version }} | ||
elixir-version: ${{ matrix.elixir_version }} | ||
hexpm-mirrors: | | ||
https://builds.hex.pm | ||
https://cdn.jsdelivr.net/hex | ||
- name: Authenticate To Google Cloud | ||
uses: google-github-actions/auth@v2.1.7 | ||
with: | ||
credentials_json: ${{ secrets.REMOTE_CACHE_CREDENTIALS_JSON }} | ||
- name: Configure Bazel | ||
run: | | ||
if [ -n "${{ secrets.REMOTE_CACHE_BUCKET_NAME }}" ]; then | ||
cat << EOF >> user.bazelrc | ||
build --remote_cache=https://storage.googleapis.com/${{ secrets.REMOTE_CACHE_BUCKET_NAME }} | ||
build --google_default_credentials | ||
build --remote_download_toplevel | ||
EOF | ||
fi | ||
cat << EOF >> user.bazelrc | ||
build --color=yes | ||
EOF | ||
- name: Build & Load RabbitMQ OCI | ||
run: | | ||
bazelisk run packaging/docker-image:rabbitmq-amd64 | ||
- name: Configure Docker Network | ||
run: | | ||
docker network create ${DOCKER_NETWORK} | ||
- name: Build Test Runner Image | ||
run: | | ||
cd ${SELENIUM_DIR} | ||
docker build -t mocha-test --target test . | ||
- name: Run short ui suites on a standalone rabbitmq server | ||
run: | | ||
<<<<<<< HEAD | ||
RABBITMQ_DOCKER_IMAGE=bazel/packaging/docker-image:rabbitmq-amd64 \ | ||
${SELENIUM_DIR}/run-suites.sh | ||
mkdir -p /tmp/full-suite | ||
mv /tmp/selenium/* /tmp/full-suite | ||
mkdir -p /tmp/full-suite/logs | ||
mv ${SELENIUM_DIR}/logs/* /tmp/full-suite/logs | ||
mkdir -p /tmp/full-suite/screens | ||
mv ${SELENIUM_DIR}/screens/* /tmp/full-suite/screens | ||
======= | ||
IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}') | ||
RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG \ | ||
${SELENIUM_DIR}/run-suites.sh short-suite-management-ui | ||
mkdir -p /tmp/short-suite | ||
mv /tmp/selenium/* /tmp/short-suite | ||
>>>>>>> ce760c688b (Insert control-cache headers to every resource and reload index.html) | ||
- name: Upload Test Artifacts | ||
if: always() | ||
uses: actions/upload-artifact@v4.3.2 | ||
with: | ||
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }} | ||
path: | | ||
<<<<<<< HEAD | ||
/tmp/full-suite | ||
======= | ||
/tmp/short-suite | ||
>>>>>>> ce760c688b (Insert control-cache headers to every resource and reload index.html) | ||
summary-selenium: | ||
needs: | ||
- selenium | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: SUMMARY | ||
run: | | ||
echo "SUCCESS" |