mirror of
https://github.com/zed-industries/zed.git
synced 2026-07-10 00:13:29 +00:00
This fixes an issue where the bwrap bundle jobs were not guarded properly and thus showed up as `cancelled` in the job list for PRs from external contributors, causing the CI to show as failed on a PR (e.g. https://github.com/zed-industries/zed/actions/runs/28028544741/job/82963972185?pr=59758) Release Notes: - N/A
366 lines
15 KiB
YAML
366 lines
15 KiB
YAML
# Generated from xtask::workflows::run_bundling
|
|
# Rebuild with `cargo xtask workflows`.
|
|
name: run_bundling
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
RUST_BACKTRACE: '1'
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- labeled
|
|
- synchronize
|
|
jobs:
|
|
bundle_linux_aarch64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: namespace-profile-8x32-ubuntu-2004-arm-m4
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
|
|
CC: clang-18
|
|
CXX: clang++-18
|
|
steps:
|
|
- name: steps::checkout_repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
|
with:
|
|
clean: false
|
|
- name: steps::cache_rust_dependencies_namespace
|
|
uses: namespacelabs/nscloud-cache-action@a90bb5d4b27522ce881c6e98eebd7d7e6d1653f9
|
|
with:
|
|
cache: rust
|
|
path: ~/.rustup
|
|
- name: steps::setup_sentry
|
|
uses: matbour/setup-sentry-cli@3e938c54b3018bdd019973689ef984e033b0454b
|
|
with:
|
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
- name: steps::setup_linux
|
|
run: ./script/linux
|
|
- name: steps::download_wasi_sdk
|
|
run: ./script/download-wasi-sdk
|
|
- name: ./script/bundle-linux
|
|
run: ./script/bundle-linux
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-linux-aarch64.tar.gz
|
|
path: target/release/zed-linux-aarch64.tar.gz
|
|
if-no-files-found: error
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-remote-server-linux-aarch64.gz
|
|
path: target/zed-remote-server-linux-aarch64.gz
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
bundle_linux_x86_64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: namespace-profile-32x64-ubuntu-2004
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
|
|
CC: clang-18
|
|
CXX: clang++-18
|
|
steps:
|
|
- name: steps::checkout_repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
|
with:
|
|
clean: false
|
|
- name: steps::cache_rust_dependencies_namespace
|
|
uses: namespacelabs/nscloud-cache-action@a90bb5d4b27522ce881c6e98eebd7d7e6d1653f9
|
|
with:
|
|
cache: rust
|
|
path: ~/.rustup
|
|
- name: steps::setup_sentry
|
|
uses: matbour/setup-sentry-cli@3e938c54b3018bdd019973689ef984e033b0454b
|
|
with:
|
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
- name: steps::setup_linux
|
|
run: ./script/linux
|
|
- name: steps::download_wasi_sdk
|
|
run: ./script/download-wasi-sdk
|
|
- name: ./script/bundle-linux
|
|
run: ./script/bundle-linux
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-linux-x86_64.tar.gz
|
|
path: target/release/zed-linux-x86_64.tar.gz
|
|
if-no-files-found: error
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-remote-server-linux-x86_64.gz
|
|
path: target/zed-remote-server-linux-x86_64.gz
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
build_static_bwrap_linux_aarch64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: namespace-profile-8x32-ubuntu-2004-arm-m4
|
|
steps:
|
|
- name: steps::cache_nix_dependencies_namespace
|
|
uses: namespacelabs/nscloud-cache-action@a90bb5d4b27522ce881c6e98eebd7d7e6d1653f9
|
|
with:
|
|
cache: nix
|
|
- name: run_bundling::build_static_bwrap
|
|
uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: run_bundling::build_static_bwrap
|
|
uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad
|
|
with:
|
|
name: zed
|
|
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
|
cachixArgs: -v
|
|
- name: run_bundling::build_static_bwrap
|
|
run: nix build nixpkgs#pkgsStatic.bubblewrap -L
|
|
- name: run_bundling::build_static_bwrap
|
|
run: |
|
|
cp result/bin/bwrap bwrap-linux-aarch64
|
|
chmod 755 bwrap-linux-aarch64
|
|
gzip -f --stdout --best bwrap-linux-aarch64 > bwrap-linux-aarch64.gz
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: bwrap-linux-aarch64.gz
|
|
path: bwrap-linux-aarch64.gz
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
build_static_bwrap_linux_x86_64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: namespace-profile-32x64-ubuntu-2004
|
|
steps:
|
|
- name: steps::cache_nix_dependencies_namespace
|
|
uses: namespacelabs/nscloud-cache-action@a90bb5d4b27522ce881c6e98eebd7d7e6d1653f9
|
|
with:
|
|
cache: nix
|
|
- name: run_bundling::build_static_bwrap
|
|
uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: run_bundling::build_static_bwrap
|
|
uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad
|
|
with:
|
|
name: zed
|
|
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
|
cachixArgs: -v
|
|
- name: run_bundling::build_static_bwrap
|
|
run: nix build nixpkgs#pkgsStatic.bubblewrap -L
|
|
- name: run_bundling::build_static_bwrap
|
|
run: |
|
|
cp result/bin/bwrap bwrap-linux-x86_64
|
|
chmod 755 bwrap-linux-x86_64
|
|
gzip -f --stdout --best bwrap-linux-x86_64 > bwrap-linux-x86_64.gz
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: bwrap-linux-x86_64.gz
|
|
path: bwrap-linux-x86_64.gz
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
bundle_mac_aarch64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: namespace-profile-mac-large
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
|
|
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 }}
|
|
steps:
|
|
- name: steps::checkout_repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
|
with:
|
|
clean: false
|
|
- name: steps::cache_rust_dependencies_namespace
|
|
uses: namespacelabs/nscloud-cache-action@a90bb5d4b27522ce881c6e98eebd7d7e6d1653f9
|
|
with:
|
|
cache: rust
|
|
path: ~/.rustup
|
|
- name: steps::setup_node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
|
with:
|
|
node-version: '20'
|
|
- name: steps::setup_sentry
|
|
uses: matbour/setup-sentry-cli@3e938c54b3018bdd019973689ef984e033b0454b
|
|
with:
|
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
- name: steps::clear_target_dir_if_large
|
|
run: ./script/clear-target-dir-if-larger-than 350 200
|
|
- name: run_bundling::bundle_mac::bundle_mac
|
|
run: ./script/bundle-mac aarch64-apple-darwin
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: Zed-aarch64.dmg
|
|
path: target/aarch64-apple-darwin/release/Zed-aarch64.dmg
|
|
if-no-files-found: error
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-remote-server-macos-aarch64.gz
|
|
path: target/zed-remote-server-macos-aarch64.gz
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
bundle_mac_x86_64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: namespace-profile-mac-large
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
|
|
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 }}
|
|
steps:
|
|
- name: steps::checkout_repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
|
with:
|
|
clean: false
|
|
- name: steps::cache_rust_dependencies_namespace
|
|
uses: namespacelabs/nscloud-cache-action@a90bb5d4b27522ce881c6e98eebd7d7e6d1653f9
|
|
with:
|
|
cache: rust
|
|
path: ~/.rustup
|
|
- name: steps::setup_node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
|
with:
|
|
node-version: '20'
|
|
- name: steps::setup_sentry
|
|
uses: matbour/setup-sentry-cli@3e938c54b3018bdd019973689ef984e033b0454b
|
|
with:
|
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
- name: steps::clear_target_dir_if_large
|
|
run: ./script/clear-target-dir-if-larger-than 350 200
|
|
- name: run_bundling::bundle_mac::bundle_mac
|
|
run: ./script/bundle-mac x86_64-apple-darwin
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: Zed-x86_64.dmg
|
|
path: target/x86_64-apple-darwin/release/Zed-x86_64.dmg
|
|
if-no-files-found: error
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-remote-server-macos-x86_64.gz
|
|
path: target/zed-remote-server-macos-x86_64.gz
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
bundle_windows_aarch64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: self-32vcpu-windows-2022
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
|
|
AZURE_TENANT_ID: ${{ secrets.AZURE_SIGNING_TENANT_ID }}
|
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_SIGNING_CLIENT_ID }}
|
|
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_SIGNING_CLIENT_SECRET }}
|
|
ACCOUNT_NAME: ${{ vars.AZURE_SIGNING_ACCOUNT_NAME }}
|
|
CERT_PROFILE_NAME: ${{ vars.AZURE_SIGNING_CERT_PROFILE_NAME }}
|
|
ENDPOINT: ${{ vars.AZURE_SIGNING_ENDPOINT }}
|
|
FILE_DIGEST: SHA256
|
|
TIMESTAMP_DIGEST: SHA256
|
|
TIMESTAMP_SERVER: http://timestamp.acs.microsoft.com
|
|
steps:
|
|
- name: steps::checkout_repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
|
with:
|
|
clean: false
|
|
- name: steps::setup_sentry
|
|
uses: matbour/setup-sentry-cli@3e938c54b3018bdd019973689ef984e033b0454b
|
|
with:
|
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
- name: steps::clear_target_dir_if_large
|
|
run: ./script/clear-target-dir-if-larger-than.ps1 350 200
|
|
shell: pwsh
|
|
- name: run_bundling::bundle_windows::bundle_windows
|
|
run: script/bundle-windows.ps1 -Architecture aarch64
|
|
shell: pwsh
|
|
working-directory: ${{ env.ZED_WORKSPACE }}
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: Zed-aarch64.exe
|
|
path: target/Zed-aarch64.exe
|
|
if-no-files-found: error
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-remote-server-windows-aarch64.zip
|
|
path: target/zed-remote-server-windows-aarch64.zip
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
bundle_windows_x86_64:
|
|
if: |-
|
|
(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
|
runs-on: self-32vcpu-windows-2022
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
ZED_CLIENT_CHECKSUM_SEED: ${{ secrets.ZED_CLIENT_CHECKSUM_SEED }}
|
|
ZED_MINIDUMP_ENDPOINT: ${{ secrets.ZED_SENTRY_MINIDUMP_ENDPOINT }}
|
|
AZURE_TENANT_ID: ${{ secrets.AZURE_SIGNING_TENANT_ID }}
|
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_SIGNING_CLIENT_ID }}
|
|
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_SIGNING_CLIENT_SECRET }}
|
|
ACCOUNT_NAME: ${{ vars.AZURE_SIGNING_ACCOUNT_NAME }}
|
|
CERT_PROFILE_NAME: ${{ vars.AZURE_SIGNING_CERT_PROFILE_NAME }}
|
|
ENDPOINT: ${{ vars.AZURE_SIGNING_ENDPOINT }}
|
|
FILE_DIGEST: SHA256
|
|
TIMESTAMP_DIGEST: SHA256
|
|
TIMESTAMP_SERVER: http://timestamp.acs.microsoft.com
|
|
steps:
|
|
- name: steps::checkout_repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
|
with:
|
|
clean: false
|
|
- name: steps::setup_sentry
|
|
uses: matbour/setup-sentry-cli@3e938c54b3018bdd019973689ef984e033b0454b
|
|
with:
|
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
- name: steps::clear_target_dir_if_large
|
|
run: ./script/clear-target-dir-if-larger-than.ps1 350 200
|
|
shell: pwsh
|
|
- name: run_bundling::bundle_windows::bundle_windows
|
|
run: script/bundle-windows.ps1 -Architecture x86_64
|
|
shell: pwsh
|
|
working-directory: ${{ env.ZED_WORKSPACE }}
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: Zed-x86_64.exe
|
|
path: target/Zed-x86_64.exe
|
|
if-no-files-found: error
|
|
- name: run_bundling::upload_artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
with:
|
|
name: zed-remote-server-windows-x86_64.zip
|
|
path: target/zed-remote-server-windows-x86_64.zip
|
|
if-no-files-found: error
|
|
timeout-minutes: 60
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
defaults:
|
|
run:
|
|
shell: bash -euxo pipefail {0}
|