124 lines
5.0 KiB
YAML
124 lines
5.0 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "v[0-9]+.[0-9]+.x"
|
|
tags:
|
|
- "v*"
|
|
paths-ignore:
|
|
- "docs/**"
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- ".github/workflows/community_*"
|
|
|
|
concurrency:
|
|
# Allow only one workflow per any non-`main` branch.
|
|
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_INCREMENTAL: 0
|
|
RUST_BACKTRACE: 1
|
|
|
|
jobs:
|
|
bundle-mac:
|
|
timeout-minutes: 60
|
|
name: Create a macOS bundle
|
|
runs-on:
|
|
- self-hosted
|
|
- bundle
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run-bundling') }}
|
|
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 }}
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON: ${{ secrets.ZED_CLOUD_PROVIDER_ADDITIONAL_MODELS_JSON }}
|
|
DIGITALOCEAN_SPACES_ACCESS_KEY: ${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }}
|
|
DIGITALOCEAN_SPACES_SECRET_KEY: ${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
# We need to fetch more than one commit so that `script/draft-release-notes`
|
|
# is able to diff between the current and previous tag.
|
|
#
|
|
# 25 was chosen arbitrarily.
|
|
fetch-depth: 25
|
|
clean: false
|
|
|
|
- name: Limit target directory size
|
|
run: script/clear-target-dir-if-larger-than 100
|
|
|
|
- name: Determine version and release channel
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
run: |
|
|
# This exports RELEASE_CHANNEL into env (GITHUB_ENV)
|
|
script/determine-release-channel
|
|
|
|
- name: Draft release notes
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
run: |
|
|
mkdir -p target/
|
|
# Ignore any errors that occur while drafting release notes to not fail the build.
|
|
script/draft-release-notes "$version" "$channel" > target/release-notes.md || true
|
|
|
|
- name: Generate license file
|
|
run: script/generate-licenses
|
|
|
|
- name: Create macOS app bundle
|
|
run: script/bundle-mac
|
|
|
|
- name: Rename single-architecture binaries
|
|
if: ${{ github.ref == 'refs/heads/main' }} || contains(github.event.pull_request.labels.*.name, 'run-bundling') }}
|
|
run: |
|
|
mv target/aarch64-apple-darwin/release/Zed.dmg target/aarch64-apple-darwin/release/Zed-aarch64.dmg
|
|
mv target/x86_64-apple-darwin/release/Zed.dmg target/x86_64-apple-darwin/release/Zed-x86_64.dmg
|
|
|
|
- name: Upload app bundle (universal) to workflow run if main branch or specific label
|
|
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
|
|
if: ${{ github.ref == 'refs/heads/main' }} || contains(github.event.pull_request.labels.*.name, 'run-bundling') }}
|
|
with:
|
|
name: Zed_${{ github.event.pull_request.head.sha || github.sha }}.dmg
|
|
path: target/release/Zed.dmg
|
|
- name: Upload app bundle (aarch64) to workflow run if main branch or specific label
|
|
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
|
|
if: ${{ github.ref == 'refs/heads/main' }} || contains(github.event.pull_request.labels.*.name, 'run-bundling') }}
|
|
with:
|
|
name: Zed_${{ github.event.pull_request.head.sha || github.sha }}-aarch64.dmg
|
|
path: target/aarch64-apple-darwin/release/Zed-aarch64.dmg
|
|
|
|
- name: Upload app bundle (x86_64) to workflow run if main branch or specific label
|
|
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
|
|
if: ${{ github.ref == 'refs/heads/main' }} || contains(github.event.pull_request.labels.*.name, 'run-bundling') }}
|
|
with:
|
|
name: Zed_${{ github.event.pull_request.head.sha || github.sha }}-x86_64.dmg
|
|
path: target/x86_64-apple-darwin/release/Zed-x86_64.dmg
|
|
|
|
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
|
|
name: Upload app bundle to release
|
|
with:
|
|
draft: true
|
|
prerelease: ${{ env.RELEASE_CHANNEL == 'preview' }}
|
|
files: |
|
|
target/zed-remote-server-macos-x86_64.gz
|
|
target/zed-remote-server-macos-aarch64.gz
|
|
target/aarch64-apple-darwin/release/Zed-aarch64.dmg
|
|
target/x86_64-apple-darwin/release/Zed-x86_64.dmg
|
|
target/release/Zed.dmg
|
|
body_path: target/release-notes.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|