Daily Precompile #341
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: Daily Precompile | |
on: | |
schedule: | |
- cron: 30 0 * * 1,2,3,4,5 | |
workflow_dispatch: | |
jobs: | |
release_dashboard: | |
name: Build Convex Dashboard | |
runs-on: [self-hosted, aws, x64, xlarge] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Cache pnpm artifacts | |
uses: runs-on/cache@v4 | |
env: | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
RUNS_ON_S3_BUCKET_CACHE: ${{ vars.RUNS_ON_S3_BUCKET_CACHE }} | |
with: | |
path: | | |
npm-packages/common/temp/build-cache | |
npm-packages/common/temp/pnpm-store | |
key: pnpm-cache-${{ | |
hashFiles('npm-packages/common/config/rush/pnpm-lock.yaml') }}-2 | |
restore-keys: pnpm-cache- | |
- name: Node setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: NPM install globals | |
run: npm ci --prefix scripts | |
- name: Rush install | |
run: | | |
just rush install | |
- name: Build dashboard dependencies | |
run: | | |
just rush build -T dashboard-self-hosted | |
- name: Build dashboard | |
run: | | |
cd npm-packages/dashboard-self-hosted && npm run build:export | |
- name: Zip output | |
run: | | |
cd npm-packages/dashboard-self-hosted/out && zip -r ../../../dashboard.zip . | |
- name: Precompute release name | |
id: release_name | |
shell: bash | |
run: | | |
echo "RELEASE_NAME=$(date +'%Y-%m-%d')-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Create Upload Precompiled Artifacts | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
dashboard.zip | |
tag_name: precompiled-${{ steps.release_name.outputs.RELEASE_NAME }} | |
name: Precompiled ${{ steps.release_name.outputs.RELEASE_NAME }} | |
draft: false | |
prerelease: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
release_backend: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-gnu | |
os: "['self-hosted', 'aws', 'x64', 'xlarge']" | |
- target: x86_64-apple-darwin | |
# large are on intel | |
os: "'macos-latest-large'" | |
- target: aarch64-apple-darwin | |
# xlarge are on arm | |
os: "'macos-latest-xlarge'" | |
- target: x86_64-pc-windows-msvc | |
os: "'windows-latest'" | |
- target: aarch64-unknown-linux-gnu | |
os: "['self-hosted', 'aws', 'arm64', 'xlarge']" | |
name: Build Convex Backend | |
runs-on: ${{ fromJSON(matrix.os) }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: ./.github/actions/setup-rust | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
r2-access-key: ${{ secrets.R2_ACCESS_KEY_ID }} | |
r2-secret-key: ${{ secrets.R2_SECRET_ACCESS_KEY }} | |
- name: Cache pnpm artifacts | |
uses: runs-on/cache@v4 | |
env: | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
RUNS_ON_S3_BUCKET_CACHE: ${{ vars.RUNS_ON_S3_BUCKET_CACHE }} | |
with: | |
path: | | |
npm-packages/common/temp/build-cache | |
npm-packages/common/temp/pnpm-store | |
key: pnpm-cache-${{ | |
hashFiles('npm-packages/common/config/rush/pnpm-lock.yaml') }}-2 | |
restore-keys: pnpm-cache- | |
- name: Node setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: NPM install globals | |
run: npm ci --prefix scripts | |
- name: Install JS | |
run: | | |
just rush install | |
- name: Precompute release name | |
id: release_name | |
shell: bash | |
run: | | |
echo "RELEASE_NAME=$(date +'%Y-%m-%d')-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
ZIP_NAME=convex-local-backend-${{ matrix.target }}.zip | |
BINARY_NAME=convex-local-backend${{ runner.os == 'Windows' && '.exe' || '' }} | |
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_OUTPUT | |
echo "BINARY_NAME=$BINARY_NAME" >> $GITHUB_OUTPUT | |
- name: Build backend | |
shell: bash | |
run: | | |
set -ex | |
unset ROCKSDB_LIB_DIR | |
unset SODIUM_USE_PKG_CONFIG | |
unset SNAPPY_LIB_DIR | |
cargo build --release -p local_backend --bin convex-local-backend | |
mv target/release/${{ steps.release_name.outputs.BINARY_NAME }} . | |
- name: Zip backend into arch | |
uses: thedoctor0/[email protected] | |
with: | |
type: zip | |
filename: ${{ steps.release_name.outputs.ZIP_NAME }} | |
path: ${{ steps.release_name.outputs.BINARY_NAME }} | |
- name: Create Upload Precompiled Artifacts | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
${{ steps.release_name.outputs.ZIP_NAME }} | |
LICENSE.md | |
tag_name: precompiled-${{ steps.release_name.outputs.RELEASE_NAME }} | |
name: Precompiled ${{ steps.release_name.outputs.RELEASE_NAME }} | |
draft: false | |
prerelease: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |