Some checks failed
Update All Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Triage Project Sync (#84) / Sync triage project (push) Has been cancelled
release_nightly / notify_on_failure (push) Has been cancelled
release_nightly / check_style (push) Has been cancelled
release_nightly / run_tests_windows (push) Has been cancelled
release_nightly / clippy_windows (push) Has been cancelled
release_nightly / bundle_linux_aarch64 (push) Has been cancelled
release_nightly / bundle_linux_x86_64 (push) Has been cancelled
release_nightly / bundle_mac_aarch64 (push) Has been cancelled
release_nightly / bundle_mac_x86_64 (push) Has been cancelled
release_nightly / bundle_windows_aarch64 (push) Has been cancelled
release_nightly / bundle_windows_x86_64 (push) Has been cancelled
release_nightly / build_nix_linux_x86_64 (push) Has been cancelled
release_nightly / build_nix_mac_aarch64 (push) Has been cancelled
release_nightly / update_nightly_tag (push) Has been cancelled
Hotfix Review Monitor / check-hotfix-reviews (push) Has been cancelled
Stale PR Review Reminder / check-stale-prs (push) Has been cancelled
Update Weekly Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Bump collab-staging Tag / update-collab-staging-tag (push) Has been cancelled
compliance_check / scheduled_compliance_check (push) Has been cancelled
Single-commit orphan branch: full zed-industries/zed @ 8c74db0 source tree with a 3-file patch applied (no upstream history). Patch (crates/gpui_linux/src/linux/wayland/): - serial.rs: add SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; add latest_serial_of() - window.rs: activate() uses keyboard-enter serial (Mutter focus gate) Mutter honors window activation only when the token carries the keyboard- focus serial from wl_keyboard.enter; GPUI used a stale mouse-press serial. See docs/tray-window-focus-wayland.md in logiguard. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
227 lines
8.4 KiB
Rust
227 lines
8.4 KiB
Rust
use std::path::Path;
|
|
|
|
use crate::tasks::workflows::{
|
|
nix_build::build_nix,
|
|
release::ReleaseBundleJobs,
|
|
runners::{Arch, Platform, ReleaseChannel},
|
|
steps::{DEFAULT_REPOSITORY_OWNER_GUARD, FluentBuilder, NamedJob, dependant_job, named},
|
|
vars::{assets, bundle_envs},
|
|
};
|
|
|
|
use super::{runners, steps};
|
|
use gh_workflow::*;
|
|
use indoc::indoc;
|
|
|
|
pub fn run_bundling() -> Workflow {
|
|
let bundle = ReleaseBundleJobs {
|
|
linux_aarch64: bundle_linux(Arch::AARCH64, None, &[]),
|
|
linux_x86_64: bundle_linux(Arch::X86_64, None, &[]),
|
|
mac_aarch64: bundle_mac(Arch::AARCH64, None, &[]),
|
|
mac_x86_64: bundle_mac(Arch::X86_64, None, &[]),
|
|
windows_aarch64: bundle_windows(Arch::AARCH64, None, &[]),
|
|
windows_x86_64: bundle_windows(Arch::X86_64, None, &[]),
|
|
};
|
|
let nix_linux_x86_64 = nix_job(Platform::Linux, Arch::X86_64);
|
|
let nix_mac_aarch64 = nix_job(Platform::Mac, Arch::AARCH64);
|
|
named::workflow()
|
|
.on(Event::default().pull_request(
|
|
PullRequest::default().types([PullRequestType::Labeled, PullRequestType::Synchronize]),
|
|
))
|
|
.concurrency(
|
|
Concurrency::new(Expression::new(
|
|
"${{ github.workflow }}-${{ github.head_ref || github.ref }}",
|
|
))
|
|
.cancel_in_progress(true),
|
|
)
|
|
.add_env(("CARGO_TERM_COLOR", "always"))
|
|
.add_env(("RUST_BACKTRACE", "1"))
|
|
.map(|mut workflow| {
|
|
for job in bundle.into_jobs() {
|
|
workflow = workflow.add_job(job.name, job.job);
|
|
}
|
|
workflow
|
|
})
|
|
.add_job(nix_linux_x86_64.name, nix_linux_x86_64.job)
|
|
.add_job(nix_mac_aarch64.name, nix_mac_aarch64.job)
|
|
}
|
|
|
|
fn nix_job(platform: Platform, arch: Arch) -> NamedJob {
|
|
let mut job = build_nix(
|
|
platform,
|
|
arch,
|
|
"default",
|
|
// don't push PR builds to the cache
|
|
Some("-zed-editor-[0-9.]*"),
|
|
&[],
|
|
);
|
|
job.job = job.job.cond(Expression::new(format!(
|
|
"{} && ((github.event.action == 'labeled' && github.event.label.name == 'run-bundling') || \
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling')))",
|
|
DEFAULT_REPOSITORY_OWNER_GUARD
|
|
)));
|
|
job
|
|
}
|
|
|
|
fn bundle_job(deps: &[&NamedJob]) -> Job {
|
|
dependant_job(deps)
|
|
.when(deps.len() == 0, |job|
|
|
job.cond(Expression::new(
|
|
indoc! {
|
|
r#"(github.event.action == 'labeled' && github.event.label.name == 'run-bundling') ||
|
|
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'run-bundling'))"#,
|
|
})))
|
|
.timeout_minutes(60u32)
|
|
}
|
|
|
|
pub(crate) fn bundle_mac(
|
|
arch: Arch,
|
|
release_channel: Option<ReleaseChannel>,
|
|
deps: &[&NamedJob],
|
|
) -> NamedJob {
|
|
pub fn bundle_mac(arch: Arch) -> Step<Run> {
|
|
named::bash(&format!("./script/bundle-mac {arch}-apple-darwin"))
|
|
}
|
|
let platform = Platform::Mac;
|
|
let artifact_name = match arch {
|
|
Arch::X86_64 => assets::MAC_X86_64,
|
|
Arch::AARCH64 => assets::MAC_AARCH64,
|
|
};
|
|
let remote_server_artifact_name = match arch {
|
|
Arch::X86_64 => assets::REMOTE_SERVER_MAC_X86_64,
|
|
Arch::AARCH64 => assets::REMOTE_SERVER_MAC_AARCH64,
|
|
};
|
|
NamedJob {
|
|
name: format!("bundle_mac_{arch}"),
|
|
job: bundle_job(deps)
|
|
.runs_on(runners::MAC_DEFAULT)
|
|
.envs(bundle_envs(platform))
|
|
.add_step(steps::checkout_repo())
|
|
.when_some(release_channel, |job, release_channel| {
|
|
job.add_step(set_release_channel(platform, release_channel))
|
|
})
|
|
.add_step(steps::setup_node())
|
|
.add_step(steps::setup_sentry())
|
|
.add_step(steps::clear_target_dir_if_large(runners::Platform::Mac))
|
|
.add_step(bundle_mac(arch))
|
|
.add_step(upload_artifact(&format!(
|
|
"target/{arch}-apple-darwin/release/{artifact_name}"
|
|
)))
|
|
.add_step(upload_artifact(&format!(
|
|
"target/{remote_server_artifact_name}"
|
|
))),
|
|
}
|
|
}
|
|
|
|
pub fn upload_artifact(path: &str) -> Step<Use> {
|
|
let name = Path::new(path).file_name().unwrap().to_str().unwrap();
|
|
Step::new(format!("@actions/upload-artifact {}", name))
|
|
.uses(
|
|
"actions",
|
|
"upload-artifact",
|
|
"330a01c490aca151604b8cf639adc76d48f6c5d4", // v5
|
|
)
|
|
// N.B. "name" is the name for the asset. The uploaded
|
|
// file retains its filename.
|
|
.add_with(("name", name))
|
|
.add_with(("path", path))
|
|
.add_with(("if-no-files-found", "error"))
|
|
}
|
|
|
|
pub(crate) fn bundle_linux(
|
|
arch: Arch,
|
|
release_channel: Option<ReleaseChannel>,
|
|
deps: &[&NamedJob],
|
|
) -> NamedJob {
|
|
let platform = Platform::Linux;
|
|
let artifact_name = match arch {
|
|
Arch::X86_64 => assets::LINUX_X86_64,
|
|
Arch::AARCH64 => assets::LINUX_AARCH64,
|
|
};
|
|
let remote_server_artifact_name = match arch {
|
|
Arch::X86_64 => assets::REMOTE_SERVER_LINUX_X86_64,
|
|
Arch::AARCH64 => assets::REMOTE_SERVER_LINUX_AARCH64,
|
|
};
|
|
NamedJob {
|
|
name: format!("bundle_linux_{arch}"),
|
|
job: bundle_job(deps)
|
|
.runs_on(arch.linux_bundler())
|
|
.envs(bundle_envs(platform))
|
|
.add_env(Env::new("CC", "clang-18"))
|
|
.add_env(Env::new("CXX", "clang++-18"))
|
|
.add_step(steps::checkout_repo())
|
|
.when_some(release_channel, |job, release_channel| {
|
|
job.add_step(set_release_channel(platform, release_channel))
|
|
})
|
|
.add_step(steps::setup_sentry())
|
|
.map(steps::install_linux_dependencies)
|
|
.add_step(steps::script("./script/bundle-linux"))
|
|
.add_step(upload_artifact(&format!("target/release/{artifact_name}")))
|
|
.add_step(upload_artifact(&format!(
|
|
"target/{remote_server_artifact_name}"
|
|
))),
|
|
}
|
|
}
|
|
|
|
pub(crate) fn bundle_windows(
|
|
arch: Arch,
|
|
release_channel: Option<ReleaseChannel>,
|
|
deps: &[&NamedJob],
|
|
) -> NamedJob {
|
|
let platform = Platform::Windows;
|
|
pub fn bundle_windows(arch: Arch) -> Step<Run> {
|
|
let step = match arch {
|
|
Arch::X86_64 => named::pwsh("script/bundle-windows.ps1 -Architecture x86_64"),
|
|
Arch::AARCH64 => named::pwsh("script/bundle-windows.ps1 -Architecture aarch64"),
|
|
};
|
|
step.working_directory("${{ env.ZED_WORKSPACE }}")
|
|
}
|
|
let artifact_name = match arch {
|
|
Arch::X86_64 => assets::WINDOWS_X86_64,
|
|
Arch::AARCH64 => assets::WINDOWS_AARCH64,
|
|
};
|
|
let remote_server_artifact_name = match arch {
|
|
Arch::X86_64 => assets::REMOTE_SERVER_WINDOWS_X86_64,
|
|
Arch::AARCH64 => assets::REMOTE_SERVER_WINDOWS_AARCH64,
|
|
};
|
|
NamedJob {
|
|
name: format!("bundle_windows_{arch}"),
|
|
job: bundle_job(deps)
|
|
.runs_on(runners::WINDOWS_DEFAULT)
|
|
.envs(bundle_envs(platform))
|
|
.add_step(steps::checkout_repo())
|
|
.when_some(release_channel, |job, release_channel| {
|
|
job.add_step(set_release_channel(platform, release_channel))
|
|
})
|
|
.add_step(steps::setup_sentry())
|
|
.add_step(bundle_windows(arch))
|
|
.add_step(upload_artifact(&format!("target/{artifact_name}")))
|
|
.add_step(upload_artifact(&format!(
|
|
"target/{remote_server_artifact_name}"
|
|
))),
|
|
}
|
|
}
|
|
|
|
fn set_release_channel(platform: Platform, release_channel: ReleaseChannel) -> Step<Run> {
|
|
match release_channel {
|
|
ReleaseChannel::Nightly => set_release_channel_to_nightly(platform),
|
|
}
|
|
}
|
|
|
|
fn set_release_channel_to_nightly(platform: Platform) -> Step<Run> {
|
|
match platform {
|
|
Platform::Linux | Platform::Mac => named::bash(indoc::indoc! {r#"
|
|
set -eu
|
|
version=$(git rev-parse --short HEAD)
|
|
echo "Publishing version: ${version} on release channel nightly"
|
|
echo "nightly" > crates/zed/RELEASE_CHANNEL
|
|
"#}),
|
|
Platform::Windows => named::pwsh(indoc::indoc! {r#"
|
|
$ErrorActionPreference = "Stop"
|
|
$version = git rev-parse --short HEAD
|
|
Write-Host "Publishing version: $version on release channel nightly"
|
|
"nightly" | Set-Content -Path "crates/zed/RELEASE_CHANNEL"
|
|
"#})
|
|
.working_directory("${{ env.ZED_WORKSPACE }}"),
|
|
}
|
|
}
|