Add surreal upgrade --alpha (#4179)

This commit is contained in:
Rushmore Mushambi 2024-06-13 09:47:35 +02:00 committed by GitHub
parent fa66779e43
commit 99f41ff1a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,6 +13,7 @@ use std::process::Command;
use surrealdb::env::{arch, os}; use surrealdb::env::{arch, os};
pub(crate) const ROOT: &str = "https://download.surrealdb.com"; pub(crate) const ROOT: &str = "https://download.surrealdb.com";
const ALPHA: &str = "alpha";
const BETA: &str = "beta"; const BETA: &str = "beta";
const LATEST: &str = "latest"; const LATEST: &str = "latest";
const NIGHTLY: &str = "nightly"; const NIGHTLY: &str = "nightly";
@ -20,13 +21,16 @@ const NIGHTLY: &str = "nightly";
#[derive(Args, Debug)] #[derive(Args, Debug)]
pub struct UpgradeCommandArguments { pub struct UpgradeCommandArguments {
/// Install the latest nightly version /// Install the latest nightly version
#[arg(long, conflicts_with = "beta", conflicts_with = "version")] #[arg(long, conflicts_with = "alpha", conflicts_with = "beta", conflicts_with = "version")]
nightly: bool, nightly: bool,
/// Install the latest beta version /// Install the latest beta version
#[arg(long, conflicts_with = "nightly", conflicts_with = "version")] #[arg(long, conflicts_with = "nightly", conflicts_with = "beta", conflicts_with = "version")]
alpha: bool,
/// Install the latest beta version
#[arg(long, conflicts_with = "nightly", conflicts_with = "alpha", conflicts_with = "version")]
beta: bool, beta: bool,
/// Install a specific version /// Install a specific version
#[arg(long, conflicts_with = "nightly", conflicts_with = "beta")] #[arg(long, conflicts_with = "nightly", conflicts_with = "alpha", conflicts_with = "beta")]
version: Option<String>, version: Option<String>,
/// Don't actually replace the executable /// Don't actually replace the executable
#[arg(long)] #[arg(long)]
@ -42,6 +46,8 @@ impl UpgradeCommandArguments {
if self.nightly || version.as_deref() == Some(NIGHTLY) { if self.nightly || version.as_deref() == Some(NIGHTLY) {
Ok(Cow::Borrowed(NIGHTLY)) Ok(Cow::Borrowed(NIGHTLY))
} else if self.alpha || version.as_deref() == Some(ALPHA) {
client.fetch(ALPHA).await
} else if self.beta || version.as_deref() == Some(BETA) { } else if self.beta || version.as_deref() == Some(BETA) {
client.fetch(BETA).await client.fetch(BETA).await
} else if let Some(version) = version { } else if let Some(version) = version {
@ -111,7 +117,7 @@ pub async fn init(args: UpgradeCommandArguments) -> Result<(), Error> {
let new_version = args.version().await?; let new_version = args.version().await?;
// Parsed version numbers follow semver format (major.minor.patch) // Parsed version numbers follow semver format (major.minor.patch)
if new_version != NIGHTLY && new_version != BETA { if new_version != NIGHTLY && new_version != ALPHA && new_version != BETA {
let old_version_parsed = parse_version(&old_version)?; let old_version_parsed = parse_version(&old_version)?;
let new_version_parsed = parse_version(&new_version)?; let new_version_parsed = parse_version(&new_version)?;