Weekly Tests #98
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: Weekly Tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * SAT" | |
jobs: | |
weekly-tests: | |
name: Run weekly tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 1440 | |
strategy: | |
max-parallel: 3 | |
fail-fast: false | |
matrix: | |
repo: | |
- charm-advanced-routing | |
- charm-apt-mirror | |
- charm-cloudsupport | |
- charm-duplicity | |
- charm-juju-backup-all | |
- charm-juju-local | |
- charm-kubernetes-service-checks | |
- charm-local-users | |
- charm-logrotated | |
- charm-nginx | |
- charm-nrpe | |
- charm-openstack-service-checks | |
- charm-prometheus-blackbox-exporter | |
- charm-prometheus-juju-exporter | |
- charm-prometheus-libvirt-exporter | |
- charm-simple-streams | |
- charm-storage-connector | |
- charm-sysconfig | |
- charm-userdir-ldap | |
- charmed-openstack-upgrader | |
- juju-backup-all | |
- juju-lint | |
- openstack-exporter-operator | |
- prometheus-hardware-exporter | |
- prometheus-juju-backup-all-exporter | |
workflow_file_name: | |
- check.yaml | |
include: | |
- repo: hardware-observer-operator | |
workflow_file_name: check.yaml | |
- repo: hardware-observer-operator | |
workflow_file_name: cos_integration.yaml | |
- repo: openstack-exporter-operator | |
workflow_file_name: pull-request.yaml | |
- repo: prometheus-juju-exporter | |
workflow_file_name: pr.yaml | |
- repo: snap-tempest | |
workflow_file_name: pr.yaml | |
steps: | |
- name: Running ${{ matrix.workflow_file_name }} tests for ${{ matrix.repo }} | |
uses: convictional/[email protected] | |
id: dispatched-tests | |
with: | |
owner: canonical | |
repo: ${{ matrix.repo }} | |
github_token: ${{ secrets.GHA_WORKFLOW_TRIGGER }} | |
workflow_file_name: ${{ matrix.workflow_file_name }} | |
ref: main | |
wait_interval: 60 | |
- name: Collect result | |
id: collect-result | |
if: always() | |
run: | | |
result=$(cat <<-END | |
{ | |
"job-index": "${{ strategy.job-index }}", | |
"repo": "${{ matrix.repo }}", | |
"branch": "main", | |
"workflow_file_name":"${{ matrix.workflow_file_name }}", | |
"conclusion": "${{ steps.dispatched-tests.outcome }}", | |
"workflow_url": "${{ steps.dispatched-tests.outputs.workflow_url }}" | |
} | |
END | |
) | |
echo $result > "result-${{ strategy.job-index }}.json" | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: "result-${{ strategy.job-index }}" | |
path: "result-${{ strategy.job-index }}.json" | |
notify: | |
needs: weekly-tests | |
if: always() # these need to be run always | |
name: Notify SolEng with results | |
runs-on: ubuntu-latest | |
steps: | |
- name: Collect results | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- name: Install jq | |
run: | | |
sudo apt update | |
sudo apt install jq -y | |
- name: Concatenate results | |
run: | | |
{ | |
echo 'results<<EOF' | |
jq -s '.[] | ["- [\(.repo) (\(.branch), \(.workflow_file_name))](\(.workflow_url)) \(if .conclusion == "success" then ":gh-success-octicon-checkcirclefillicon:" else ":gh-failure-octicon-xcirclefillicon:" end)"]' result-*.json | jq -r 'join("\n")' | |
echo EOF | |
} >> "$GITHUB_ENV" | |
- name: Send the Mattermost Message | |
uses: mattermost/action-mattermost-notify@master | |
with: | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }} | |
TEXT: | | |
:robot_face: @soleng Results from [Weekly tests](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}): | |
${{ env.results }} |