Environmental variables (#28) (#36)

* Setting environmental variables

* Test the action also on 1.67
This commit is contained in:
Mieszko Grodzicki 2023-04-17 14:45:37 +02:00 committed by GitHub
parent f9ffdc4a3d
commit f2825830a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 102 additions and 79 deletions

View file

@ -8,7 +8,6 @@ on:
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
test-build:
@ -18,11 +17,6 @@ jobs:
test-action:
name: Smoke test the action
uses: ./.github/workflows/test-action.yml
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
with:
runs-on: ${{ matrix.os }}
test-inputs:
name: Test action inputs

View file

@ -5,19 +5,18 @@ name: Smoke test the action
on:
workflow_call:
inputs:
runs-on:
required: true
type: string
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
run-tests:
name: Run tests
runs-on: ${{ inputs.runs-on }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain: ['1.66', '1.67', 'stable', 'beta', 'nightly']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the test repository and test with patch change and patch version bump
uses: actions/checkout@v3
@ -31,6 +30,8 @@ jobs:
path: action
- name: Run the action
uses: ./action/
with:
rust-toolchain: ${{ matrix.toolchain }}
- name: Checkout the test with major change and patch version bump
run: |
git fetch origin major_change
@ -38,6 +39,8 @@ jobs:
- name: Run the action (allowed to fail)
id: action_major
uses: ./action/
with:
rust-toolchain: ${{ matrix.toolchain }}
continue-on-error: true
- name: Fail if the action has not returned any errors (but it should have)
if: steps.action_major.outcome != 'failure'

View file

@ -6,6 +6,9 @@ name: Test rustdoc caching
on:
workflow_call:
env:
RUST_BACKTRACE: 1
jobs:
test-cache-exists:
name: Check if the cache exists after running the action

View file

@ -8,7 +8,6 @@ on:
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
test-package-patch:

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,3 @@
import os = require("os");
import * as path from "path";
import * as core from "@actions/core";
import * as github from "@actions/github";
@ -7,36 +5,16 @@ import * as io from "@actions/io";
import * as toolCache from "@actions/tool-cache";
import * as rustCore from "@actions-rs/core";
import {
getErrorMessage,
getPlatformMatchingTarget,
getRustcVersion,
optionIfValueProvided,
} from "./utils";
import { RustdocCache } from "./rustdoc-cache";
const CARGO_TARGET_DIR = path.join("semver-checks", "target");
function getErrorMessage(error: unknown): string {
if (error instanceof Error) {
return error.message;
} else {
return String(error);
}
}
function getPlatformMatchingTarget(): string {
const platform = os.platform() as string;
switch (platform) {
case "linux":
return "x86_64-unknown-linux-gnu";
case "win32":
return "x86_64-pc-windows-msvc";
case "darwin":
return "x86_64-apple-darwin";
default:
throw new Error("Unsupported runner");
}
}
function optionIfValueProvided(option: string, value?: string): string[] {
return value ? [option, value] : [];
}
function getCheckReleaseArguments(): string[] {
return [
optionIfValueProvided("--package", rustCore.input.getInput("package")),
@ -84,6 +62,21 @@ async function installRustUpIfRequested(): Promise<void> {
// by this action, so it will not override the default toolchain globally.
process.env["RUSTUP_TOOLCHAIN"] = toolchain;
}
// Disable incremental compilation.
process.env["CARGO_INCREMENTAL"] ||= "0";
// Enable colors in the output.
process.env["CARGO_TERM_COLOR"] ||= "always";
// Enable sparse checkout for crates.io except for Rust 1.66 and 1.67,
// on which it is unstable.
if (!process.env["CARGO_REGISTRIES_CRATES_IO_PROTOCOL"]) {
const rustcVersion = await getRustcVersion();
if (!rustcVersion.startsWith("rustc-1.66") && !rustcVersion.startsWith("rustc-1.67")) {
process.env["CARGO_REGISTRIES_CRATES_IO_PROTOCOL"] = "sparse";
}
}
}
async function runCargoSemverChecks(cargo: rustCore.Cargo): Promise<void> {

View file

@ -1,33 +1,11 @@
import os = require("os");
import hashFiles = require("hash-files");
import * as exec from "@actions/exec";
import * as path from "path";
import * as cache from "@actions/cache";
import * as core from "@actions/core";
import * as rustCore from "@actions-rs/core";
function makeExecOptions(stdout: { s: string }): exec.ExecOptions {
return {
listeners: {
stdout: (buffer: Buffer): void => {
stdout.s += buffer.toString();
},
},
};
}
function removeWhitespaces(str: string): string {
return str.trim().replace(/\s/g, "-");
}
function hashFilesOrEmpty(patterns: string[]): string {
try {
return hashFiles.sync({ files: patterns });
} catch (error) {
return "";
}
}
import { getCargoSemverChecksVersion, getRustcVersion, hashFilesOrEmpty } from "./utils";
export class RustdocCache {
private readonly cargo;
@ -77,8 +55,8 @@ export class RustdocCache {
rustCore.input.getInput("prefix-key") || "",
rustCore.input.getInput("cache-key"),
os.platform() as string,
await this.getRustcVersion(),
await this.getCargoSemverChecksVersion(),
await getRustcVersion(),
await getCargoSemverChecksVersion(this.cargo),
this.getCargoLocksHash(),
"semver-checks-rustdoc",
].join("-");
@ -94,16 +72,4 @@ export class RustdocCache {
private getCargoLocksHash(): string {
return hashFilesOrEmpty([path.join(this.workspaceRoot, "**", "Cargo.lock")]);
}
private async getRustcVersion(): Promise<string> {
const stdout = { s: "" };
await exec.exec("rustc", ["--version"], makeExecOptions(stdout));
return removeWhitespaces(stdout.s);
}
private async getCargoSemverChecksVersion(): Promise<string> {
const stdout = { s: "" };
await this.cargo.call(["semver-checks", "--version"], makeExecOptions(stdout));
return removeWhitespaces(stdout.s);
}
}

65
src/utils.ts Normal file
View file

@ -0,0 +1,65 @@
import os = require("os");
import hashFiles = require("hash-files");
import * as exec from "@actions/exec";
import * as rustCore from "@actions-rs/core";
export function getErrorMessage(error: unknown): string {
if (error instanceof Error) {
return error.message;
} else {
return String(error);
}
}
export function getPlatformMatchingTarget(): string {
const platform = os.platform() as string;
switch (platform) {
case "linux":
return "x86_64-unknown-linux-gnu";
case "win32":
return "x86_64-pc-windows-msvc";
case "darwin":
return "x86_64-apple-darwin";
default:
throw new Error("Unsupported runner");
}
}
export function optionIfValueProvided(option: string, value?: string): string[] {
return value ? [option, value] : [];
}
export function hashFilesOrEmpty(patterns: string[]): string {
try {
return hashFiles.sync({ files: patterns });
} catch (error) {
return "";
}
}
function makeExecOptions(stdout: { s: string }): exec.ExecOptions {
return {
listeners: {
stdout: (buffer: Buffer): void => {
stdout.s += buffer.toString();
},
},
};
}
function removeWhitespaces(str: string): string {
return str.trim().replace(/\s/g, "-");
}
export async function getRustcVersion(): Promise<string> {
const stdout = { s: "" };
await exec.exec("rustc", ["--version"], makeExecOptions(stdout));
return removeWhitespaces(stdout.s);
}
export async function getCargoSemverChecksVersion(cargo: rustCore.Cargo): Promise<string> {
const stdout = { s: "" };
await cargo.call(["semver-checks", "--version"], makeExecOptions(stdout));
return removeWhitespaces(stdout.s);
}