forked from microbit-foundation/cctd-ml-machine
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into merge-upstream
- Loading branch information
Showing
85 changed files
with
235 additions
and
256 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: build | ||
|
||
on: | ||
release: | ||
types: [created] | ||
push: | ||
branches: | ||
- "**" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ startsWith(github.ref, 'refs/tags/v') && 'release' || github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/v') }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: read | ||
env: | ||
AWS_DEFAULT_REGION: eu-west-1 | ||
PRODUCTION_CLOUDFRONT_DISTRIBUTION_ID: NOT_YET | ||
STAGING_CLOUDFRONT_DISTRIBUTION_ID: E37K3V5Y65XQIX | ||
REVIEW_CLOUDFRONT_DISTRIBUTION_ID: E3KUGPF02I4CJ4 | ||
VITE_FOUNDATION_BUILD: ${{ github.repository_owner == 'microbit-foundation' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
registry-url: "https://npm.pkg.github.com" | ||
- run: npm ci | ||
- run: npm install --no-save @microbit-foundation/[email protected] @microbit-foundation/[email protected] @microbit-foundation/npm-package-versioner@2 | ||
if: github.repository_owner == 'microbit-foundation' | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: npx update-ci-version | ||
- run: node ./bin/print-ci-env.cjs >> $GITHUB_ENV | ||
- run: npm run test | ||
- run: npm run check | ||
- run: npx prettier --check src | ||
- run: npm run build | ||
- run: npx website-deploy-aws | ||
if: github.repository_owner == 'microbit-foundation' && (env.STAGE == 'REVIEW' || success()) | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.WEB_DEPLOY_ML_AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.WEB_DEPLOY_ML_AWS_SECRET_ACCESS_KEY }} | ||
- run: npx invalidate-cloudfront-distribution | ||
if: github.repository_owner == 'microbit-foundation' && (env.STAGE == 'REVIEW' || success()) | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.WEB_DEPLOY_ML_AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.WEB_DEPLOY_ML_AWS_SECRET_ACCESS_KEY }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env node | ||
|
||
const ref = process.env.GITHUB_REF; | ||
let stage; | ||
if (ref === 'refs/heads/main') { | ||
stage = 'STAGING'; | ||
} else if (ref.startsWith('refs/tags/v')) { | ||
stage = 'PRODUCTION'; | ||
} else { | ||
stage = 'REVIEW'; | ||
} | ||
|
||
process.env.STAGE = stage; | ||
// STAGE must be defined before this is imported | ||
const { bucketName, bucketPrefix } = require('../deployment.cjs'); | ||
const baseUrl = !bucketPrefix ? '/' : `/${bucketPrefix}/`; | ||
const fullUrl = `https://${bucketName}${baseUrl}`; | ||
|
||
console.log(`STAGE=${stage}`); | ||
console.log(`VITE_STAGE=${stage}`); | ||
console.log(`BASE_URL=${baseUrl}`); | ||
// This can be used for og:url and similar. Not quite right for review domain but we don't really care. | ||
console.log(`VITE_FULL_URL=${fullUrl}`); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
const { | ||
createDeploymentDetailsFromOptions, | ||
} = require('@microbit-foundation/website-deploy-aws-config'); | ||
|
||
const { s3Config } = createDeploymentDetailsFromOptions({ | ||
production: { | ||
bucket: 'ml.microbit.org', | ||
mode: 'root', | ||
allowPrerelease: false, | ||
}, | ||
staging: { | ||
bucket: 'stage-ml.microbit.org', | ||
}, | ||
review: { | ||
bucket: 'review-ml.microbit.org', | ||
mode: 'branch-prefix', | ||
}, | ||
}); | ||
|
||
module.exports = { | ||
deploymentDir: './dist', | ||
...s3Config, | ||
region: 'eu-west-1', | ||
removeNonexistentObjects: true, | ||
enableS3StaticWebsiteHosting: true, | ||
errorDocumentKey: 'index.html', | ||
redirects: [], | ||
params: { | ||
'**/**.html': { | ||
CacheControl: 'public, max-age=0, must-revalidate', | ||
}, | ||
'**/assets/**': { CacheControl: 'public, max-age=31536000, immutable' }, | ||
// There's lots in public/ that we'd ideally use the bundler for to improve caching | ||
'css/**': { | ||
CacheControl: 'public, max-age=0, must-revalidate', | ||
}, | ||
'firmware/**': { | ||
CacheControl: 'public, max-age=0, must-revalidate', | ||
}, | ||
'imgs/**': { | ||
CacheControl: 'public, max-age=0, must-revalidate', | ||
}, | ||
'sounds/**': { | ||
CacheControl: 'public, max-age=0, must-revalidate', | ||
}, | ||
'webfonts/**': { | ||
CacheControl: 'public, max-age=0, must-revalidate', | ||
}, | ||
}, | ||
}; |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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
Oops, something went wrong.