
I'll be using this to `nix run github:zed-industries/zed/nightly` and get an up-to-date and cached nightly build. It'll also serve as a way to warn me when the nix build is broken, rather than having to wait for users to report it. Eventually and depending on the build time of the nix builds, we may want to consider putting a nix build in CI (#17458) to prevent breakages, but for now a best-effort nightly build that doesn't block the job if it fails is a good start. Resolve #19937 Release Notes: - N/A
248 lines
8.1 KiB
YAML
248 lines
8.1 KiB
YAML
name: Release Nightly
|
|
|
|
on:
|
|
schedule:
|
|
# Fire every day at 7:00am UTC (Roughly before EU workday and after US workday)
|
|
- cron: "0 7 * * *"
|
|
push:
|
|
tags:
|
|
- "nightly"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_INCREMENTAL: 0
|
|
RUST_BACKTRACE: 1
|
|
|
|
jobs:
|
|
style:
|
|
timeout-minutes: 60
|
|
name: Check formatting and Clippy lints
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- self-hosted
|
|
- test
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
fetch-depth: 0
|
|
|
|
- name: Run style checks
|
|
uses: ./.github/actions/check_style
|
|
|
|
- name: Run clippy
|
|
run: ./script/clippy
|
|
|
|
tests:
|
|
timeout-minutes: 60
|
|
name: Run tests
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- self-hosted
|
|
- test
|
|
needs: style
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Run tests
|
|
uses: ./.github/actions/run_tests
|
|
|
|
bundle-mac:
|
|
timeout-minutes: 60
|
|
name: Create a macOS bundle
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- self-hosted
|
|
- bundle
|
|
needs: tests
|
|
env:
|
|
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
|
|
MACOS_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PASSWORD }}
|
|
APPLE_NOTARIZATION_KEY: ${{ secrets.APPLE_NOTARIZATION_KEY }}
|
|
APPLE_NOTARIZATION_KEY_ID: ${{ secrets.APPLE_NOTARIZATION_KEY_ID }}
|
|
APPLE_NOTARIZATION_ISSUER_ID: ${{ secrets.APPLE_NOTARIZATION_ISSUER_ID }}
|
|
DIGITALOCEAN_SPACES_ACCESS_KEY: ${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }}
|
|
DIGITALOCEAN_SPACES_SECRET_KEY: ${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON: ${{ secrets.ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON }}
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Set release channel to nightly
|
|
run: |
|
|
set -eu
|
|
version=$(git rev-parse --short HEAD)
|
|
echo "Publishing version: ${version} on release channel nightly"
|
|
echo "nightly" > crates/zed/RELEASE_CHANNEL
|
|
|
|
- name: Create macOS app bundle
|
|
run: script/bundle-mac
|
|
|
|
- name: Upload Zed Nightly
|
|
run: script/upload-nightly macos
|
|
|
|
bundle-linux-x86:
|
|
timeout-minutes: 60
|
|
name: Create a Linux *.tar.gz bundle for x86
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- buildjet-16vcpu-ubuntu-2004
|
|
needs: tests
|
|
env:
|
|
DIGITALOCEAN_SPACES_ACCESS_KEY: ${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }}
|
|
DIGITALOCEAN_SPACES_SECRET_KEY: ${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON: ${{ secrets.ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON }}
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Add Rust to the PATH
|
|
run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install Linux dependencies
|
|
run: ./script/linux && ./script/install-mold 2.34.0
|
|
|
|
- name: Limit target directory size
|
|
run: script/clear-target-dir-if-larger-than 100
|
|
|
|
- name: Set release channel to nightly
|
|
run: |
|
|
set -euo pipefail
|
|
version=$(git rev-parse --short HEAD)
|
|
echo "Publishing version: ${version} on release channel nightly"
|
|
echo "nightly" > crates/zed/RELEASE_CHANNEL
|
|
|
|
- name: Create Linux .tar.gz bundle
|
|
run: script/bundle-linux
|
|
|
|
- name: Upload Zed Nightly
|
|
run: script/upload-nightly linux-targz
|
|
|
|
bundle-linux-arm:
|
|
timeout-minutes: 60
|
|
name: Create a Linux *.tar.gz bundle for ARM
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- buildjet-16vcpu-ubuntu-2204-arm
|
|
needs: tests
|
|
env:
|
|
DIGITALOCEAN_SPACES_ACCESS_KEY: ${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }}
|
|
DIGITALOCEAN_SPACES_SECRET_KEY: ${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON: ${{ secrets.ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON }}
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Install Linux dependencies
|
|
run: ./script/linux
|
|
|
|
- name: Limit target directory size
|
|
run: script/clear-target-dir-if-larger-than 100
|
|
|
|
- name: Set release channel to nightly
|
|
run: |
|
|
set -euo pipefail
|
|
version=$(git rev-parse --short HEAD)
|
|
echo "Publishing version: ${version} on release channel nightly"
|
|
echo "nightly" > crates/zed/RELEASE_CHANNEL
|
|
|
|
- name: Create Linux .tar.gz bundle
|
|
run: script/bundle-linux
|
|
|
|
- name: Upload Zed Nightly
|
|
run: script/upload-nightly linux-targz
|
|
|
|
bundle-nix:
|
|
timeout-minutes: 60
|
|
name: (${{ matrix.system.os }}) Nix Build
|
|
continue-on-error: true
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
system:
|
|
- os: x86 Linux
|
|
runner: buildjet-16vcpu-ubuntu-2204
|
|
install_nix: true
|
|
- os: arm Mac
|
|
# TODO: once other macs are provisioned for nix, remove that constraint from the runner
|
|
runner: [macOS, ARM64, nix]
|
|
install_nix: false
|
|
- os: arm Linux
|
|
runner: buildjet-16vcpu-ubuntu-2204-arm
|
|
install_nix: true
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on: ${{ matrix.system.runner }}
|
|
needs: tests
|
|
env:
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON: ${{ secrets.ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON }}
|
|
GIT_LFS_SKIP_SMUDGE: 1 # breaks the livekit rust sdk examples which we don't actually depend on
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
clean: false
|
|
|
|
# on our macs we manually install nix. for some reason the cachix action is running
|
|
# under a non-login /bin/bash shell which doesn't source the proper script to add the
|
|
# nix profile to PATH, so we manually add them here
|
|
- name: Set path
|
|
if: ${{ ! matrix.system.install_nix }}
|
|
run: |
|
|
echo "/nix/var/nix/profiles/default/bin" >> $GITHUB_PATH
|
|
echo "/Users/administrator/.nix-profile/bin" >> $GITHUB_PATH
|
|
|
|
- uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f # v31
|
|
if: ${{ matrix.system.install_nix }}
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16
|
|
with:
|
|
name: zed-industries
|
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
|
- run: nix build
|
|
- run: nix-collect-garbage -d
|
|
|
|
update-nightly-tag:
|
|
name: Update nightly tag
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- bundle-mac
|
|
- bundle-linux-x86
|
|
- bundle-linux-arm
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Update nightly tag
|
|
run: |
|
|
if [ "$(git rev-parse nightly)" = "$(git rev-parse HEAD)" ]; then
|
|
echo "Nightly tag already points to current commit. Skipping tagging."
|
|
exit 0
|
|
fi
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
git tag -f nightly
|
|
git push origin nightly --force
|