mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
b34ab6f3a1
This PR removes the references to initializing Git submodules as part of building Zed. These are no longer needed, as our only submodule was removed in #11672. Release Notes: - N/A
128 lines
3.4 KiB
YAML
128 lines
3.4 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:
|
|
name: Check formatting and Clippy lints
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- self-hosted
|
|
- test
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
clean: false
|
|
fetch-depth: 0
|
|
|
|
- name: Run style checks
|
|
uses: ./.github/actions/check_style
|
|
|
|
- name: Run clippy
|
|
run: cargo xtask clippy
|
|
tests:
|
|
name: Run tests
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- self-hosted
|
|
- test
|
|
needs: style
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Run tests
|
|
uses: ./.github/actions/run_tests
|
|
|
|
bundle-mac:
|
|
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_USERNAME: ${{ secrets.APPLE_NOTARIZATION_USERNAME }}
|
|
APPLE_NOTARIZATION_PASSWORD: ${{ secrets.APPLE_NOTARIZATION_PASSWORD }}
|
|
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 }}
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@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: Generate license file
|
|
run: script/generate-licenses
|
|
|
|
- name: Create macOS app bundle
|
|
run: script/bundle-mac
|
|
|
|
- name: Upload Zed Nightly
|
|
run: script/upload-nightly macos
|
|
|
|
bundle-deb:
|
|
name: Create a Linux *.tar.gz bundle
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- self-hosted
|
|
- deploy
|
|
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 }}
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Add Rust to the PATH
|
|
run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
|
|
|
- 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: Generate license file
|
|
run: script/generate-licenses
|
|
|
|
- name: Create Linux .tar.gz bundle
|
|
run: script/bundle-linux
|
|
|
|
- name: Upload Zed Nightly
|
|
run: script/upload-nightly linux-targz
|