Add test seed upload workflow. #6
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: Generate Test Seed | |
on: | |
pull_request: | |
paths: | |
- 'studies/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
REMOTE_SEED_PATH: 'pull/${{ github.event.pull_request.number }}/seed' | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Comment "Generation In Progress" | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const commentBody = | |
`## 🔄 Generating Test Seed | |
A new test seed file is currently being generated for this pull request. | |
### What's Next? | |
- The generation process typically takes a few minutes. | |
- Once the generation is complete, this comment will provide further instructions. | |
` | |
const comment = require('.github/workflows/scripts/comment.js') | |
await comment(github, context, commentBody) | |
- name: Install | |
run: | | |
npm ci | |
- name: Build & Test | |
run: | | |
npm run typecheck:scripts | |
npm run build:proto | |
npm run typecheck | |
npm run test | |
- name: Lint | |
run: | | |
npm run lint -- --base origin/${{ github.event.pull_request.base.ref }} | |
- name: Generate seed | |
run: | | |
npm run seed_tools -- create_seed studies seed.bin | |
- name: Upload seed | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PRODUCTION_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PRODUCTION_SECRET_ACCESS_KEY }} | |
AWS_REGION: us-west-2 | |
CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} | |
run: | | |
gzip -c seed.bin | aws s3 cp - "s3://brave-production-griffin-origin/$REMOTE_SEED_PATH" \ | |
--content-type application/octet-stream \ | |
--content-encoding gzip | |
INVALIDATION_ID=$(aws cloudfront create-invalidation --distribution-id "$CLOUDFRONT_DISTRIBUTION_ID" --paths "/$REMOTE_SEED_PATH" --query 'Invalidation.Id' --output text) | |
aws cloudfront wait invalidation-completed --distribution-id "$CLOUDFRONT_DISTRIBUTION_ID" --id "$INVALIDATION_ID" | |
- name: Comment "Generation Successful" | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const fs = require('fs'); | |
const variationsServerURL = `https://griffin.brave.com/${process.env.REMOTE_SEED_PATH}`; | |
const serialNumberContent = fs.readFileSync('serialnumber', 'utf8'); | |
const commentBody = | |
`## 🚀 Test Seed Generated | |
To test the new seed, launch the browser with the following command line: | |
\`\`\` | |
--accept-empty-variations-seed-signature --variations-server-url=${variationsServerURL} | |
\`\`\` | |
#### Seed Details | |
- Serial Number: \`${serialNumberContent}\` | |
- Uploaded: \`${new Date().toISOString()}\` | |
` | |
const comment = require('.github/workflows/scripts/comment.js') | |
await comment(github, context, commentBody) | |
- name: Comment "Generation Failed" | |
if: failure() | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const actionRunURL = `${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}`; | |
const commentBody = | |
`## ❌ Test Seed Generation Failed | |
[Review the workflow logs for more information.](${actionRunURL}) | |
` | |
const comment = require('.github/workflows/scripts/comment.js') | |
await comment(github, context, commentBody) |