feat: Video recording with dynamic file name based on metadata in tests #1691
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: Build & test | |
concurrency: | |
group: ${{ github.workflow }} | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
permissions: | |
contents: read | |
jobs: | |
build-and-test: | |
name: Build & test Docker images with random user | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
use-random-user: [false, true] | |
steps: | |
- uses: actions/checkout@main | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@master | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@master | |
with: | |
platforms: linux/amd64,linux/arm64 | |
use: false | |
- name: Output Docker info | |
run: docker info | |
- name: Set up Python | |
uses: actions/setup-python@main | |
with: | |
python-version: '3.11' | |
check-latest: true | |
- name: Get branch name (only for push to branch) | |
if: github.event_name == 'push' | |
run: echo "BRANCH=$(echo ${PUSH_BRANCH##*/})" >> $GITHUB_ENV | |
env: | |
PUSH_BRANCH: ${{ github.ref }} | |
- name: Get target branch name (only for PRs) | |
if: github.event_name == 'pull_request' | |
run: echo "BRANCH=$(echo ${TARGET_BRANCH##*/})" >> $GITHUB_ENV | |
env: | |
TARGET_BRANCH: ${{ github.head_ref }} | |
- name: Output branch name | |
run: echo ${BRANCH} | |
- name: Set Selenium base version | |
if: contains(toJson(github.event.commits), '[deploy]') == false | |
run: | | |
make set_nightly_env | |
cat .env | xargs -I {} echo {} >> $GITHUB_ENV | |
- name: Sets build date | |
run: | | |
echo "BUILD_DATE=$(date '+%Y%m%d')" >> $GITHUB_ENV | |
echo "AUTHORS=${AUTHORS}" >> $GITHUB_ENV | |
env: | |
AUTHORS: ${{ vars.AUTHORS || 'SeleniumHQ' }} | |
- name: Build Docker images | |
uses: nick-invision/retry@master | |
with: | |
timeout_minutes: 12 | |
max_attempts: 3 | |
retry_wait_seconds: 60 | |
command: VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make build | |
- name: Count image layers | |
run: VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make count_image_layers | |
- name: Test Docker images | |
uses: nick-invision/retry@master | |
with: | |
timeout_minutes: 20 | |
max_attempts: 3 | |
command: | | |
USE_RANDOM_USER_ID=${USE_RANDOM_USER} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make test | |
env: | |
USE_RANDOM_USER: ${{ matrix.use-random-user }} |