-
Notifications
You must be signed in to change notification settings - Fork 88
Fix/naga branch trigger #938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
4adab59
fix(release.yml): update ref to use head_branch instead of head_sha
Ansonhkg d3ff8e7
feat(workflows): add naga health workflows
Ansonhkg 0fa94cb
chore(workflows): remove naga health check workflow
Ansonhkg 902c106
feat(workflows): add Naga health check workflow with scheduled and ma…
Ansonhkg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,114 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
| name: Naga Health Checks | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| on: | ||||||||||||||||||||||||||||||||||||||||||||||
| push: | ||||||||||||||||||||||||||||||||||||||||||||||
| branches: | ||||||||||||||||||||||||||||||||||||||||||||||
| - feature/jss-29-feature-add-naga-uptime-bot | ||||||||||||||||||||||||||||||||||||||||||||||
| schedule: | ||||||||||||||||||||||||||||||||||||||||||||||
| - cron: '*/5 * * * *' | ||||||||||||||||||||||||||||||||||||||||||||||
| workflow_dispatch: | ||||||||||||||||||||||||||||||||||||||||||||||
| inputs: | ||||||||||||||||||||||||||||||||||||||||||||||
| naga_branch: | ||||||||||||||||||||||||||||||||||||||||||||||
| description: 'Branch to run health checks from (optional)' | ||||||||||||||||||||||||||||||||||||||||||||||
| required: true | ||||||||||||||||||||||||||||||||||||||||||||||
| default: 'naga' | ||||||||||||||||||||||||||||||||||||||||||||||
| network: | ||||||||||||||||||||||||||||||||||||||||||||||
| description: 'Specific network to test (leave empty for all)' | ||||||||||||||||||||||||||||||||||||||||||||||
| required: false | ||||||||||||||||||||||||||||||||||||||||||||||
| type: choice | ||||||||||||||||||||||||||||||||||||||||||||||
| options: | ||||||||||||||||||||||||||||||||||||||||||||||
| - naga-dev | ||||||||||||||||||||||||||||||||||||||||||||||
| - naga-test | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| env: | ||||||||||||||||||||||||||||||||||||||||||||||
| LIT_STATUS_WRITE_KEY: ${{ secrets.LIT_STATUS_WRITE_KEY }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIT_STATUS_BACKEND_URL: ${{ vars.LIT_STATUS_BACKEND_URL }} | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| jobs: | ||||||||||||||||||||||||||||||||||||||||||||||
| naga-health-check: | ||||||||||||||||||||||||||||||||||||||||||||||
| runs-on: ubuntu-latest | ||||||||||||||||||||||||||||||||||||||||||||||
| environment: Health Check | ||||||||||||||||||||||||||||||||||||||||||||||
| strategy: | ||||||||||||||||||||||||||||||||||||||||||||||
| fail-fast: false | ||||||||||||||||||||||||||||||||||||||||||||||
| matrix: | ||||||||||||||||||||||||||||||||||||||||||||||
| network: [naga-dev, naga-test] | ||||||||||||||||||||||||||||||||||||||||||||||
| env: | ||||||||||||||||||||||||||||||||||||||||||||||
| NETWORK: ${{ matrix.network }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIVE_MASTER_ACCOUNT: ${{ matrix.network == 'naga-dev' && secrets.LIVE_MASTER_ACCOUNT_NAGA_DEV || secrets.LIVE_MASTER_ACCOUNT_NAGA_TEST }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIT_YELLOWSTONE_PRIVATE_RPC_URL: ${{ vars.LIT_YELLOWSTONE_PRIVATE_RPC_URL }} | ||||||||||||||||||||||||||||||||||||||||||||||
| steps: | ||||||||||||||||||||||||||||||||||||||||||||||
| - name: Checkout repository | ||||||||||||||||||||||||||||||||||||||||||||||
| uses: actions/checkout@v4 | ||||||||||||||||||||||||||||||||||||||||||||||
| with: | ||||||||||||||||||||||||||||||||||||||||||||||
| ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.naga_branch || github.ref }} | ||||||||||||||||||||||||||||||||||||||||||||||
| fetch-depth: 1 | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Install rust | ||||||||||||||||||||||||||||||||||||||||||||||
| uses: actions-rs/toolchain@v1 | ||||||||||||||||||||||||||||||||||||||||||||||
| with: | ||||||||||||||||||||||||||||||||||||||||||||||
| toolchain: stable | ||||||||||||||||||||||||||||||||||||||||||||||
| override: true | ||||||||||||||||||||||||||||||||||||||||||||||
| components: rust-std | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Install wasm-pack | ||||||||||||||||||||||||||||||||||||||||||||||
| uses: jetli/[email protected] | ||||||||||||||||||||||||||||||||||||||||||||||
| with: | ||||||||||||||||||||||||||||||||||||||||||||||
| version: latest | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Setup Node.js | ||||||||||||||||||||||||||||||||||||||||||||||
| uses: actions/setup-node@v4 | ||||||||||||||||||||||||||||||||||||||||||||||
| with: | ||||||||||||||||||||||||||||||||||||||||||||||
| node-version: '22.18.0' | ||||||||||||||||||||||||||||||||||||||||||||||
| registry-url: 'https://registry.npmjs.org' | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Enable corepack and setup pnpm | ||||||||||||||||||||||||||||||||||||||||||||||
| run: | | ||||||||||||||||||||||||||||||||||||||||||||||
| corepack enable | ||||||||||||||||||||||||||||||||||||||||||||||
| corepack prepare [email protected] --activate | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Install dependencies | ||||||||||||||||||||||||||||||||||||||||||||||
| run: pnpm install --frozen-lockfile | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Build project | ||||||||||||||||||||||||||||||||||||||||||||||
| run: pnpm build | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Verify required environment variables | ||||||||||||||||||||||||||||||||||||||||||||||
| run: | | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "Checking environment variables for ${{ matrix.network }}..." | ||||||||||||||||||||||||||||||||||||||||||||||
| if [ -z "${LIVE_MASTER_ACCOUNT}" ]; then | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "❌ LIVE_MASTER_ACCOUNT is not set for ${{ matrix.network }}" | ||||||||||||||||||||||||||||||||||||||||||||||
| exit 1 | ||||||||||||||||||||||||||||||||||||||||||||||
| fi | ||||||||||||||||||||||||||||||||||||||||||||||
| if [ -z "${LIT_STATUS_WRITE_KEY}" ]; then | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "❌ LIT_STATUS_WRITE_KEY is not set" | ||||||||||||||||||||||||||||||||||||||||||||||
| exit 1 | ||||||||||||||||||||||||||||||||||||||||||||||
| fi | ||||||||||||||||||||||||||||||||||||||||||||||
| if [ -z "${LIT_STATUS_BACKEND_URL}" ]; then | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "❌ LIT_STATUS_BACKEND_URL is not set" | ||||||||||||||||||||||||||||||||||||||||||||||
| exit 1 | ||||||||||||||||||||||||||||||||||||||||||||||
| fi | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "✅ All required environment variables are set" | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Run health check for ${{ matrix.network }} | ||||||||||||||||||||||||||||||||||||||||||||||
| if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.network == '' || github.event.inputs.network == matrix.network }} | ||||||||||||||||||||||||||||||||||||||||||||||
| run: pnpm run ci:health | ||||||||||||||||||||||||||||||||||||||||||||||
| timeout-minutes: 10 | ||||||||||||||||||||||||||||||||||||||||||||||
| env: | ||||||||||||||||||||||||||||||||||||||||||||||
| NETWORK: ${{ matrix.network }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIVE_MASTER_ACCOUNT: ${{ matrix.network == 'naga-dev' && secrets.LIVE_MASTER_ACCOUNT_NAGA_DEV || secrets.LIVE_MASTER_ACCOUNT_NAGA_TEST }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIT_STATUS_WRITE_KEY: ${{ secrets.LIT_STATUS_WRITE_KEY }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIT_STATUS_BACKEND_URL: ${{ vars.LIT_STATUS_BACKEND_URL }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LIT_YELLOWSTONE_PRIVATE_RPC_URL: ${{ vars.LIT_YELLOWSTONE_PRIVATE_RPC_URL }} | ||||||||||||||||||||||||||||||||||||||||||||||
| LOG_LEVEL: info | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Health check summary | ||||||||||||||||||||||||||||||||||||||||||||||
| if: always() | ||||||||||||||||||||||||||||||||||||||||||||||
| run: | | ||||||||||||||||||||||||||||||||||||||||||||||
| if [ ${{ job.status }} == 'success' ]; then | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "✅ Health check passed for ${{ matrix.network }}" | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" | ||||||||||||||||||||||||||||||||||||||||||||||
| else | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "❌ Health check failed for ${{ matrix.network }}" | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" | ||||||||||||||||||||||||||||||||||||||||||||||
| echo "Please check the logs above for details" | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
| - name: Health check summary | |
| if: always() | |
| run: | | |
| if [ ${{ job.status }} == 'success' ]; then | |
| echo "✅ Health check passed for ${{ matrix.network }}" | |
| echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" | |
| else | |
| echo "❌ Health check failed for ${{ matrix.network }}" | |
| echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" | |
| echo "Please check the logs above for details" | |
| - name: Health check summary (success) | |
| if: success() | |
| run: | | |
| echo "✅ Health check passed for ${{ matrix.network }}" | |
| echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" | |
| - name: Health check summary (failure) | |
| if: failure() | |
| run: | | |
| echo "❌ Health check failed for ${{ matrix.network }}" | |
| echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" | |
| echo "Please check the logs above for details" |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The input parameter 'naga_branch' is marked as required but described as optional. Either set required to false or update the description to remove '(optional)'.