Test Nightly (nightly-23-12-2024) #428
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: Nightly Test | |
run-name: Test Nightly (${{ inputs.tagName || github.event.client_payload.tagName || 'latest' }}) | |
on: | |
repository_dispatch: | |
types: [nightly-release] | |
workflow_dispatch: | |
inputs: | |
tagName: | |
description: Release tag to use for this test run. Defaults to today's nightly release. | |
type: string | |
env: | |
CI: true | |
jobs: | |
get-tag: | |
name: Get Release Tag | |
runs-on: ubuntu-latest | |
outputs: | |
tagName: ${{ inputs.tagName || github.event.client_payload.tagName || steps.defaultTagName.outputs.tagName }} | |
steps: | |
- name: Create Default Tag Name | |
id: defaultTagName | |
if: ${{ !inputs.tagName && !github.event.client_payload.tagName }} | |
run: | | |
echo "tagName=nightly-$(date +%d-%m-%Y)" >> $GITHUB_OUTPUT | |
test-nightly: | |
name: Nightly Test | |
needs: get-tag | |
uses: ./.github/workflows/test-staging.yml | |
strategy: | |
fail-fast: false | |
max-parallel: 1 | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
with: | |
runsOn: ${{ matrix.os }} | |
releaseVersion: ${{ needs.get-tag.outputs.tagName }} | |
testRunnerOptions: -E 'kind(test)' | |
secrets: | |
CLOUDTRUTH_API_KEY: ${{ secrets.CT_STAGING_CI_ADMIN_API_KEY }} | |
# slack-notification: | |
# name: Slack Notification | |
# needs: test-nightly | |
# # do not run on skipped or cancelled | |
# if: ${{ always() && (success() || failure()) }} | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: rtCamp/action-slack-notify@v2 | |
# env: | |
# SLACK_TITLE: CLI Nightly Test | |
# SLACK_CHANNEL: dev-notifications | |
# SLACK_USERNAME: ${{ github.repository }} | |
# SLACK_COLOR: ${{ needs.test-nightly.result }} | |
# SLACK_ICON_EMOJI: ":crab:" | |
# SLACK_MESSAGE: ${{ needs.test-nightly.result == 'success' && '✅ Passed' || needs.test-nightly.result == 'failure' && '❌ Failed' }} | |
cleanup-nightly: | |
name: Nightly Cleanup | |
needs: [get-tag, test-nightly] | |
if: ${{ always() && needs.test-nightly.result != 'skipped' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: cloudtruth/cloudtruth-cli | |
- run: sh cicd/scripts/install-rust.sh | |
- run: sudo ./install.sh --install-prerequisites --version '${{ needs.get-tag.outputs.tagName }}' || sudo ./install.sh --install-prerequisites | |
- run: cargo run --release --package xtask -- cleanup --confirm cli-test |