Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli: use artifacts instead of source code #1439

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ yarn-error.log*

# translation files
i18n
stellar-cli-repo
stellar-cli-artifacts
59 changes: 29 additions & 30 deletions scripts/stellar_cli.mjs
Original file line number Diff line number Diff line change
@@ -1,37 +1,36 @@
import fs from "fs-extra";
import path from "path";
import { execSync } from "child_process";
import {execSync} from "child_process";
import * as tar from 'tar'
import {finished} from "stream/promises";
import {Readable} from "stream"

const repoUrl = "https://github.com/stellar/stellar-cli.git";
const localRepoPath = "./stellar-cli-repo";
const localArtifactPath = "./stellar-cli-artifacts"

// Remove the existing repo if it exists
if (fs.existsSync(localRepoPath)) {
console.log("Removing existing repository...");
fs.removeSync(localRepoPath);
// Remove the existing artifact if it exists
if (fs.existsSync(localArtifactPath)) {
console.log("Removing existing artifacts...");
fs.removeSync(localArtifactPath);
}
fs.mkdirSync(localArtifactPath)

// Perform a shallow clone of the repository
console.log("Cloning repository...");
execSync(`git clone ${repoUrl} ${localRepoPath}`);
let latestVersion = execSync(
`cd ${localRepoPath} && git tag | grep -v -E 'rc|preview' | tail -n1`,
)
.toString()
.substring(1)
.trim();
// TODO: https://github.com/stellar/stellar-cli/issues/1908
let clidDocsHash = "e4680d35b11f217ddd5403dc417a883bffbc387f"
const resp = await fetch("https://api.github.com/repos/stellar/stellar-cli/tags")
const json = await resp.json()
const latestVersion = json[0].name.replace("v", "")

console.log("the latest version is", latestVersion.toString());
console.log("using commit hash to fetch cli docs: ", clidDocsHash.toString());
const url = `https://github.com/stellar/stellar-cli/releases/download/v${latestVersion}/stellar-cli-${latestVersion}-docs-cookbook.tar.gz`
const blob = await fetch(url);
await finished(Readable.fromWeb(blob.body).pipe(
tar.x({
C: `${localArtifactPath}`,
z: true
}),
));

// TODO: https://github.com/stellar/stellar-cli/issues/1908
// execSync(`cd ${localRepoPath} && git checkout --quiet v${latestVersion}`);
execSync(`cd ${localRepoPath} && git checkout --quiet ${clidDocsHash}`);
console.log("the latest version is", latestVersion.toString());

// Copy FULL_HELP_DOCS.md
const fullHelpDocsPath = path.join(localRepoPath, "FULL_HELP_DOCS.md");
const fullHelpDocsPath = path.join(localArtifactPath, "FULL_HELP_DOCS.md");
const fullHelpDocsContent = fs.readFileSync(fullHelpDocsPath, "utf8");

const modifiedContent = `---
Expand All @@ -43,17 +42,17 @@ ${fullHelpDocsContent}
`;

fs.writeFileSync(
"src/helpers/stellarCli.ts",
`export const latestVersion = "${latestVersion}";`,
"src/helpers/stellarCli.ts",
`export const latestVersion = "${latestVersion}";`,
);

fs.writeFileSync(
"docs/tools/developer-tools/cli/stellar-cli.mdx",
modifiedContent,
"docs/tools/developer-tools/cli/stellar-cli.mdx",
modifiedContent,
);

fs.cpSync(path.join(localRepoPath, "cookbook"), "docs/build/guides/cli", {
recursive: true,
fs.cpSync(path.join(localArtifactPath, "cookbook"), "docs/build/guides/cli", {
recursive: true,
});

execSync("yarn format:mdx");
Expand Down