This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
Merge branch 'trunk' into 4.17.0 #46
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: Lint and Test Helm Charts | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build-and-test: | |
name: Test Helm charts | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
test-strategy: [chart_test, chart_test_parallel_autoscaling, chart_test_https, chart_test_parallel_autoscaling_https] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Output Docker info | |
run: docker info | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.11' | |
check-latest: true | |
- name: Install CA certificates | |
run: | | |
sudo apt install openssl -y | |
sudo apt install ca-certificates -y | |
sudo update-ca-certificates --fresh | |
- 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: Sets build date | |
run: | | |
echo "BUILD_DATE=$(date '+%Y%m%d')" >> $GITHUB_ENV | |
echo "IMAGE_REGISTRY=artifactory/selenium" >> $GITHUB_ENV | |
- name: Setup Kubernetes environment | |
run: make chart_setup_env | |
- name: Build Docker images | |
run: NAME=${IMAGE_REGISTRY} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make build | |
- name: Build and lint charts | |
run: | | |
BUILD_DATE=${BUILD_DATE} make chart_build | |
echo "CHART_PACKAGE_PATH=$(cat /tmp/selenium_chart_version)" >> $GITHUB_ENV | |
echo "CHART_FILE_NAME=$(basename $(cat /tmp/selenium_chart_version))" >> $GITHUB_ENV | |
- name: Setup Kubernetes cluster | |
run: NAME=${IMAGE_REGISTRY} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make chart_cluster_setup | |
- name: Test Selenium Grid on Kubernetes | |
uses: nick-invision/[email protected] | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: | | |
NAME=${IMAGE_REGISTRY} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make ${{ matrix.test-strategy }} | |
- name: Cleanup Kubernetes cluster | |
if: always() | |
run: make chart_cluster_cleanup | |
- name: Upload Helm chart package | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.test-strategy }}_${{ env.CHART_FILE_NAME }} | |
path: ${{ env.CHART_PACKAGE_PATH }} | |
- name: Upload chart test artifacts | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.test-strategy }}-artifacts | |
path: ./tests/tests/ | |
if-no-files-found: ignore |