Align CI workflows from os-autoinst-common and isotovideo #42
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: openQA - GitHub action example | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request_target: | |
# Note how this runs on:pull_request_target and not on:pull_request! | |
# The difference is that this runs always with the context of the master | |
# branch. This is necessary to allow accessing the API credential secrets. | |
workflow_dispatch: | |
env: | |
OPENQA_HOST: ${{ secrets.OPENQA_URL }} | |
OPENQA_API_KEY: ${{ secrets.OPENQA_API_KEY }} | |
OPENQA_API_SECRET: ${{ secrets.OPENQA_API_SECRET }} | |
GH_REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
GH_REF: ${{ github.event.pull_request.head.ref }} | |
jobs: | |
trigger_and_monitor_openqa: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.opensuse.org/devel/openqa/containers/tumbleweed:client | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Trigger and monitor openQA test | |
id: openqa_schedule | |
run: | | |
if [[ "x$OPENQA_API_KEY" == 'x' && "x$OPENQA_API_SECRET" == 'x' ]]; then | |
echo "Skipping OpenQA Schedule step: No API Keys configured." | |
echo "Configure OPENQA_API_KEY & OPENQA_API_SECRET secrets" | |
exit 0 | |
fi | |
openqa-cli schedule \ | |
--monitor \ | |
--host "${OPENQA_HOST:-https://openqa.opensuse.org}/" \ | |
--apikey "$OPENQA_API_KEY" --apisecret "$OPENQA_API_SECRET" \ | |
--param-file SCENARIO_DEFINITIONS_YAML=scenario-definitions.yaml \ | |
DISTRI=example VERSION=0 FLAVOR=DVD ARCH=x86_64 TEST=simple_boot \ | |
BUILD="$GH_REPO.git#$GH_REF" _GROUP_ID="0" \ | |
CASEDIR="$GITHUB_SERVER_URL/$GH_REPO.git#$GH_REF" \ | |
NEEDLES_DIR="%%CASEDIR%%/needles" |