amqqueue_process: adopt new is_duplicate backing queue callback
#1276
Workflow file for this run
This file contains hidden or 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.17 | ||
| env: | ||
| SELENIUM_DIR: selenium | ||
| DOCKER_NETWORK: rabbitmq_net | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| - name: Configure OTP & Elixir | ||
| uses: erlef/[email protected] | ||
| 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/[email protected] | ||
| with: | ||
| credentials_json: ${{ secrets.REMOTE_CACHE_CREDENTIALS_JSON }} | ||
| <<<<<<< HEAD | ||
| - 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: Build & Load RabbitMQ OCI | ||
| run: | | ||
| make package-generic-unix | ||
| make docker-image | ||
| >>>>>>> 8d7535e0b (amqqueue_process: adopt new `is_duplicate` backing queue callback) | ||
| - 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 \ | ||
| ADDON_PROFILES=cluster ${SELENIUM_DIR}/run-suites.sh short-suite-management-ui | ||
| mkdir -p /tmp/short-suite | ||
| mv /tmp/selenium/* /tmp/short-suite | ||
| mkdir -p /tmp/short-suite/logs | ||
| mv ${SELENIUM_DIR}/logs/* /tmp/short-suite/logs | ||
| mkdir -p /tmp/short-suite/screens | ||
| mv ${SELENIUM_DIR}/screens/* /tmp/short-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 | ||
| >>>>>>> 8d7535e0b (amqqueue_process: adopt new `is_duplicate` backing queue callback) | ||
| - name: Upload Test Artifacts | ||
| if: always() | ||
| uses: actions/[email protected] | ||
| with: | ||
| name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }} | ||
| path: | | ||
| /tmp/short-suite | ||
| summary-selenium: | ||
| needs: | ||
| - selenium | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: SUMMARY | ||
| run: | | ||
| echo "SUCCESS" | ||