Compare commits
39 Commits
Author | SHA1 | Date |
---|---|---|
|
88dc235639 | |
|
b3ea035039 | |
|
16499b5e05 | |
|
4d9a2b11c1 | |
|
83a0369c8d | |
|
3639e8fd46 | |
|
69f9ca11d9 | |
|
b223206e28 | |
|
7f00d1018c | |
|
4d3830945c | |
|
b2417cde72 | |
|
8e14415dec | |
|
396d1ee271 | |
|
23cd1093e2 | |
|
402d025565 | |
|
5d50a12f35 | |
|
ad7f1a0189 | |
|
d8323be6bd | |
|
6a1db6369e | |
|
e2aeba25b2 | |
|
e3ee71a17e | |
|
1ce6b1d112 | |
|
f2024a92ea | |
|
6f9b172a64 | |
|
d03d2d0fa3 | |
|
9db57f6e68 | |
|
5d172335f8 | |
|
a7a240846b | |
|
3254cb49ae | |
|
5ed95ab73b | |
|
6696391ce4 | |
|
f0a61e6769 | |
|
74865b8fc9 | |
|
269db1d873 | |
|
941154aed5 | |
|
a919188b61 | |
|
beaa269702 | |
|
ad3964bd05 | |
|
46a11bddfe |
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"parser": "@typescript-eslint/parser",
|
||||||
|
"parserOptions": {
|
||||||
|
"project": "./tsconfig.eslint.json"
|
||||||
|
},
|
||||||
|
"plugins": ["@typescript-eslint"],
|
||||||
|
"extends": [
|
||||||
|
"eslint:recommended",
|
||||||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||||||
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||||||
|
"plugin:@typescript-eslint/recommended",
|
||||||
|
"plugin:prettier/recommended",
|
||||||
|
"prettier",
|
||||||
|
"prettier/@typescript-eslint"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"@typescript-eslint/ban-ts-ignore": "off"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This commit hook checks whether we ran `npm run build` when committed TypeScript files.
|
||||||
|
# For GitHub actions to work, we need to check the compiled JavaScript into VCS.
|
||||||
|
#
|
||||||
|
# This script can yield false positives in cases where you only make stylistic changes to the TypeScript code that don't result in changes to the compiled JavaScript code.
|
||||||
|
# It is your responsibility as a developer to then commit the changes with `git commit --no-verify` and simply skip this commit hook.
|
||||||
|
|
||||||
|
TS_FILES=$(git diff --staged --name-only | grep -c '\.ts$')
|
||||||
|
DIST_MODIFIED=$(git diff --staged --name-only | grep -c dist/index.js)
|
||||||
|
|
||||||
|
if [ $TS_FILES -gt 0 ] && [ $DIST_MODIFIED -eq 0 ] ; then
|
||||||
|
echo "You modified TypeScript files but apparently did not run 'npm run build'".
|
||||||
|
exit 1;
|
||||||
|
fi
|
|
@ -1 +0,0 @@
|
||||||
custom: https://svartalf.info/donate/
|
|
|
@ -1,18 +1,73 @@
|
||||||
name: Continuous integration
|
name: Continuous integration
|
||||||
|
|
||||||
on: [pull_request, push]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check_pr:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- name: Create npm configuration
|
||||||
|
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
|
||||||
|
env:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: "npm ci"
|
- uses: actions/checkout@v1
|
||||||
run: npm ci
|
- run: npm ci
|
||||||
|
# Temporary disabling in order to release urgent fix
|
||||||
|
# - run: npm run lint
|
||||||
|
- run: npm run build
|
||||||
|
- run: npm run test
|
||||||
|
|
||||||
- name: "npm run build"
|
install_stable:
|
||||||
run: npm run build
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os:
|
||||||
|
- ubuntu-latest
|
||||||
|
- macOS-latest
|
||||||
|
- windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- id: toolchain
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
- name: Test toolchain outputs
|
||||||
|
env:
|
||||||
|
RUSTC: ${{ steps.toolchain.outputs.rustc }}
|
||||||
|
RUSTC_HASH: ${{ steps.toolchain.outputs.rustc_hash }}
|
||||||
|
CARGO: ${{ steps.toolchain.outputs.cargo }}
|
||||||
|
RUSTUP: ${{ steps.toolchain.outputs.rustup }}
|
||||||
|
run: |
|
||||||
|
echo $RUSTC
|
||||||
|
echo $RUSTC_HASH
|
||||||
|
echo $CARGO
|
||||||
|
echo $RUSTUP
|
||||||
|
|
||||||
- name: "npm run test"
|
install_nightly:
|
||||||
run: npm run test
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: nightly
|
||||||
|
components: rustfmt, clippy
|
||||||
|
|
||||||
|
install_stable_in_docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: ubuntu:latest # Docker image, not the GitHub Actions VM
|
||||||
|
steps:
|
||||||
|
# `rustup` will need `curl` or `wget` later
|
||||||
|
- run: apt-get update && apt-get install -y curl
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
|
||||||
|
install_stable_through_rust_toolchain_file:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- run: echo "stable" > ./rust-toolchain
|
||||||
|
- uses: ./
|
||||||
|
|
|
@ -89,3 +89,6 @@ typings/
|
||||||
|
|
||||||
# DynamoDB Local files
|
# DynamoDB Local files
|
||||||
.dynamodb/
|
.dynamodb/
|
||||||
|
|
||||||
|
# IntelliJ IDEs
|
||||||
|
.idea
|
||||||
|
|
32
CHANGELOG.md
32
CHANGELOG.md
|
@ -4,6 +4,38 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.0.6] - 2020-03-24
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Pass `allow-downgrade` flag to `rustup` if `nightly` toolchain with components requested
|
||||||
|
|
||||||
|
## [1.0.5] - 2020-01-26
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `rustup` version parser does not fail Action execution on `macOS-latest` VM images anymore
|
||||||
|
|
||||||
|
## [1.0.4] - 2020-01-26
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for the `rust-toolchain` file: If the toolchain input is not given, we will try and install the version specified in the `rust-toolchain` file.
|
||||||
|
- Action outputs with `rustc`, `cargo` and `rustup` versions installed
|
||||||
|
|
||||||
|
## [1.0.3] - 2019-10-19
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for `rustup set profile` command
|
||||||
|
- Support for `--component` flag for the `rustup toolchain install` command
|
||||||
|
|
||||||
|
## [1.0.2] - 2019-10-14
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Missing `rustup` executable will not raise an annotating warning before the installation anymore (#13)
|
||||||
|
|
||||||
## [1.0.1] - 2019-10-05
|
## [1.0.1] - 2019-10-05
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
146
README.md
146
README.md
|
@ -1,11 +1,27 @@
|
||||||
# `rust-toolchain` Action
|
# `rust-toolchain` Action
|
||||||
|
|
||||||
|
[](https://actions-rs.github.io/#sponsoring)
|
||||||

|

|
||||||
[](https://gitter.im/actions-rs/community)
|
[](https://gitter.im/actions-rs/community)
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
This GitHub Action installs [Rust toolchain](https://github.com/rust-lang/rustup.rs#toolchain-specification).
|
This GitHub Action installs [Rust toolchain](https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification)
|
||||||
|
with [rustup](https://github.com/rust-lang/rustup) help.
|
||||||
|
|
||||||
Optionally it can set installed toolchain as a default and as an override for current directory.
|
It supports additional targets, components and profiles and handles all
|
||||||
|
these small papercuts for you.
|
||||||
|
|
||||||
|
**Table of Contents**
|
||||||
|
|
||||||
|
* [Example workflow](#example-workflow)
|
||||||
|
* [Inputs](#inputs)
|
||||||
|
* [Outputs](#outputs)
|
||||||
|
* [Profiles](#profiles)
|
||||||
|
* [Components](#components)
|
||||||
|
* [The toolchain file](#the-toolchain-file)
|
||||||
|
* [License](#license)
|
||||||
|
* [Contribute and support](#contribute-and-support)
|
||||||
|
|
||||||
## Example workflow
|
## Example workflow
|
||||||
|
|
||||||
|
@ -19,15 +35,16 @@ jobs:
|
||||||
name: Rust project
|
name: Rust project
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@v2
|
||||||
- name: Install nightly
|
- name: Install latest nightly
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
|
components: rustfmt, clippy
|
||||||
|
|
||||||
# `cargo check` command here will use installed `nightly`
|
# `cargo check` command here will use installed `nightly`
|
||||||
# as it set as an "override" for current directory
|
# as it is set as an "override" for current directory
|
||||||
|
|
||||||
- name: Run cargo check
|
- name: Run cargo check
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
|
@ -39,21 +56,114 @@ See [additional recipes here](https://github.com/actions-rs/meta).
|
||||||
|
|
||||||
## Inputs
|
## Inputs
|
||||||
|
|
||||||
| Name | Required | Description | Type | Default |
|
| Name | Required | Description | Type | Default |
|
||||||
| ------------| :------: | ---------------------------------------------------------------------------------------------------------------------------------------| ------ | --------|
|
| ------------ | :------: | ----------------------------------------------------------------------------------------------------------------------------------------------------| ------ | --------|
|
||||||
| `toolchain` | ✓ | [Toolchain](https://github.com/rust-lang/rustup.rs#toolchain-specification) name to use, ex. `stable`, `nightly`, `nightly-2019-04-20` | string | |
|
| `toolchain` | | [Toolchain](https://github.com/rust-lang/rustup.rs#toolchain-specification) name to use, ex. `stable`, `nightly`, `nightly-2019-04-20`, or `1.32.0` | string | stable |
|
||||||
| `target` | | Additionally install specified target for this toolchain, ex. `x86_64-apple-darwin` | string | |
|
| `target` | | Additionally install specified target for this toolchain, ex. `x86_64-apple-darwin` | string | |
|
||||||
| `default` | | Set installed toolchain as a default toolchain | bool | false |
|
| `default` | | Set installed toolchain as a default toolchain | bool | false |
|
||||||
| `override` | | Set installed toolchain as an override for the current directory | bool | false |
|
| `override` | | Set installed toolchain as an override for the current directory | bool | false |
|
||||||
|
| `profile` | | Execute `rustup set profile {value}` before installing the toolchain, ex. `minimal` | string | default |
|
||||||
|
| `components` | | Comma-separated list of the additional components to install, ex. `clippy, rustfmt` | string | |
|
||||||
|
|
||||||
|
Note: since `v1.0.4` version, `toolchain` input is not marked as required
|
||||||
|
in order to support toolchain files. See the details [below](#the-toolchain-file).
|
||||||
|
|
||||||
|
## Outputs
|
||||||
|
|
||||||
|
Installed `rustc`, `cargo` and `rustup` versions can be fetched from the Action outputs:
|
||||||
|
|
||||||
|
| Name | Description | Example |
|
||||||
|
| ------------ | --------------------- | ------------------------------- |
|
||||||
|
| `rustc` | Rustc version | `1.40.0 (73528e339 2019-12-16)` |
|
||||||
|
| `rustc_hash` | Rustc version hash | `73528e339` |
|
||||||
|
| `cargo` | Cargo version | `1.40.0 (bc8e4c8be 2019-11-22)` |
|
||||||
|
| `rustup` | rustup version | `1.21.1 (7832b2ebe 2019-12-20)` |
|
||||||
|
|
||||||
|
Note: `rustc_hash` output value can be used with [actions/cache](https://github.com/actions/cache) Action
|
||||||
|
to store cache for different Rust versions, as it is unique across different Rust versions and builds (including `nightly`).
|
||||||
|
|
||||||
|
## Profiles
|
||||||
|
|
||||||
|
This Action supports rustup [profiles](https://blog.rust-lang.org/2019/10/15/Rustup-1.20.0.html#profiles),
|
||||||
|
which are can be used to speed up the workflow execution by installing the
|
||||||
|
minimally required set of components, for example:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Install minimal nightly
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: nightly
|
||||||
|
```
|
||||||
|
|
||||||
|
This Action will automatically run `rustup self update` if `profile` input is set
|
||||||
|
and the installed `rustup` version does not supports them.
|
||||||
|
|
||||||
|
In order to provide backwards compatibility for `v1` version,
|
||||||
|
there is no value for `profile` input set by default,
|
||||||
|
which means that the `default` profile is used by `rustup`
|
||||||
|
(and that includes `rust-docs`, `clippy` and `rustfmt`).\
|
||||||
|
You may want to consider using `profile: minimal` to speed up toolchain installation.
|
||||||
|
|
||||||
## Components
|
## Components
|
||||||
|
|
||||||
If you are going to install `clippy`, `rustfmt` or any other [rustup component](https://rust-lang.github.io/rustup-components-history/),
|
This Action supports rustup [components](https://blog.rust-lang.org/2019/10/15/Rustup-1.20.0.html#installing-the-latest-compatible-nightly) too,
|
||||||
it might not be available in latest `nightly` build;
|
and in combination with the [profiles](#profiles) input it allows to install only the needed components:
|
||||||
check out the [`actions-rs/components-nightly`](https://github.com/actions-rs/components-nightly) Action,
|
|
||||||
which makes this process much easier.
|
|
||||||
|
|
||||||
## Notes
|
```yaml
|
||||||
|
- name: Install minimal stable with clippy and rustfmt
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
components: rustfmt, clippy
|
||||||
|
```
|
||||||
|
|
||||||
As `rustup` is not installed by default for [macOS environments](https://help.github.com/en/articles/virtual-environments-for-github-actions)
|
As an extra perk, `rustup >= 1.20.0` is able to find the most recent `nightly` toolchain
|
||||||
at the moment (2019-09-13), this Action will try its best to install it before any other operations.
|
with the requested components available; next example is utilizing this feature
|
||||||
|
to install the minimal set of `nightly` toolchain components with the `rustfmt` and `clippy` extras:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Install minimal nightly with clippy and rustfmt
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: nightly
|
||||||
|
components: rustfmt, clippy
|
||||||
|
```
|
||||||
|
|
||||||
|
In case if `nightly` toolchain is requested and one of the components is missing in
|
||||||
|
latest `nightly` release, this Action will attempt the downgrade till it find
|
||||||
|
the most recent `nightly` with all components needed.\
|
||||||
|
Note that this behavior will work only if the following two conditions apply:
|
||||||
|
|
||||||
|
1. `toolchain` input is `nightly` exactly.
|
||||||
|
2. At least one component is provided in `components` input.
|
||||||
|
|
||||||
|
Same to the `profile` input, if installed `rustup` does not supports "components",
|
||||||
|
it will be automatically upgraded by this Action.
|
||||||
|
|
||||||
|
## The toolchain file
|
||||||
|
|
||||||
|
This Action supports [toolchain files](https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file),
|
||||||
|
so it is not necessary to use `toolchain` input anymore.
|
||||||
|
|
||||||
|
Input has higher priority, so if you are want to use toolchain file,
|
||||||
|
you need to remove the input from the workflow file.
|
||||||
|
|
||||||
|
If neither `toolchain` input or `rust-toolchain` file are provided,
|
||||||
|
Action execution will fail.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This Action is distributed under the terms of the MIT license, see [LICENSE](https://github.com/actions-rs/toolchain/blob/master/LICENSE) for details.
|
||||||
|
|
||||||
|
## Contribute and support
|
||||||
|
|
||||||
|
Any contributions are welcomed!
|
||||||
|
|
||||||
|
If you want to report a bug or have a feature request,
|
||||||
|
check the [Contributing guide](https://github.com/actions-rs/.github/blob/master/CONTRIBUTING.md).
|
||||||
|
|
||||||
|
You can also support author by funding the ongoing project work,
|
||||||
|
see [Sponsoring](https://actions-rs.github.io/#sponsoring).
|
||||||
|
|
|
@ -1,22 +1,74 @@
|
||||||
import * as args from '../src/args'
|
import { getToolchainArgs } from "../src/args";
|
||||||
|
import { morph } from "mock-env";
|
||||||
|
import { sync as tempWriteSync } from "temp-write";
|
||||||
|
|
||||||
const testEnvVars = {
|
describe("actions-rs/toolchain", () => {
|
||||||
INPUT_TOOLCHAIN: 'nightly-2019-04-20',
|
it("Parses action input into toolchain options", () => {
|
||||||
INPUT_DEFAULT: 'false',
|
const args = morph(
|
||||||
INPUT_OVERRIDE: 'true'
|
() => {
|
||||||
}
|
return getToolchainArgs("./rust-toolchain");
|
||||||
|
},
|
||||||
|
{
|
||||||
|
INPUT_TOOLCHAIN: "nightly-2019-04-20",
|
||||||
|
INPUT_DEFAULT: "false",
|
||||||
|
INPUT_OVERRIDE: "true",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
describe('actions-rs/toolchain', () => {
|
expect(args.name).toBe("nightly-2019-04-20");
|
||||||
beforeEach(() => {
|
expect(args.default).toBe(false);
|
||||||
for (const key in testEnvVars)
|
expect(args.override).toBe(true);
|
||||||
process.env[key] = testEnvVars[key as keyof typeof testEnvVars]
|
});
|
||||||
})
|
|
||||||
|
|
||||||
it('Parses action input into toolchain options', async () => {
|
it("uses input variable if rust-toolchain file does not exist", function () {
|
||||||
const result = args.toolchain_args();
|
const args = morph(
|
||||||
|
() => {
|
||||||
|
return getToolchainArgs("./rust-toolchain");
|
||||||
|
},
|
||||||
|
{
|
||||||
|
INPUT_TOOLCHAIN: "nightly",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
expect(result.name).toBe('nightly-2019-04-20');
|
expect(args.name).toBe("nightly");
|
||||||
expect(result.default).toBe(false);
|
});
|
||||||
expect(result.override).toBe(true);
|
|
||||||
|
it("toolchain input is required if rust-toolchain does not exist", function () {
|
||||||
|
expect(() => getToolchainArgs("./rust-toolchain")).toThrowError();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("prioritizes rust-toolchain file over input variable", function () {
|
||||||
|
const rustToolchainFile = tempWriteSync("1.39.0");
|
||||||
|
|
||||||
|
const args = morph(
|
||||||
|
() => {
|
||||||
|
return getToolchainArgs(rustToolchainFile);
|
||||||
|
},
|
||||||
|
{
|
||||||
|
INPUT_TOOLCHAIN: "nightly",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(args.name).toBe("nightly");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("uses rust-toolchain file if input does not exist", function () {
|
||||||
|
const rustToolchainFile = tempWriteSync("1.39.0");
|
||||||
|
|
||||||
|
const args = morph(() => {
|
||||||
|
return getToolchainArgs(rustToolchainFile);
|
||||||
|
}, {});
|
||||||
|
|
||||||
|
expect(args.name).toBe("1.39.0");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("trims content of the override file", function () {
|
||||||
|
const rustToolchainFile = tempWriteSync("\n 1.39.0\n\n\n\n");
|
||||||
|
|
||||||
|
const args = morph(() => {
|
||||||
|
return getToolchainArgs(rustToolchainFile);
|
||||||
|
}, {});
|
||||||
|
|
||||||
|
expect(args.name).toBe("1.39.0");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
21
action.yml
21
action.yml
|
@ -9,7 +9,10 @@ inputs:
|
||||||
description: |
|
description: |
|
||||||
Rust toolchain name.
|
Rust toolchain name.
|
||||||
|
|
||||||
See https://github.com/rust-lang/rustup.rs#toolchain-specification
|
See https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
|
||||||
|
|
||||||
|
If this is not given, the action will try and install the version specified in the `rust-toolchain` file.
|
||||||
|
required: false
|
||||||
target:
|
target:
|
||||||
description: Target triple to install for this toolchain
|
description: Target triple to install for this toolchain
|
||||||
required: false
|
required: false
|
||||||
|
@ -19,6 +22,22 @@ inputs:
|
||||||
override:
|
override:
|
||||||
description: Set installed toolchain as an override for a directory
|
description: Set installed toolchain as an override for a directory
|
||||||
default: false
|
default: false
|
||||||
|
profile:
|
||||||
|
description: Name of the group of components to be installed for a new toolchain
|
||||||
|
required: false
|
||||||
|
components:
|
||||||
|
description: Comma-separated list of components to be additionally installed for a new toolchain
|
||||||
|
required: false
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
rustc:
|
||||||
|
description: Installed Rustc version
|
||||||
|
rustc_hash:
|
||||||
|
description: Installed Rustc version hash, can be used for caching purposes
|
||||||
|
cargo:
|
||||||
|
description: Installed Cargo version
|
||||||
|
rustup:
|
||||||
|
description: Installed rustup version
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node12'
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,11 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
clearMocks: true,
|
|
||||||
moduleFileExtensions: ['js', 'ts'],
|
|
||||||
testEnvironment: 'node',
|
|
||||||
testMatch: ['**/*.test.ts'],
|
|
||||||
testRunner: 'jest-circus/runner',
|
|
||||||
transform: {
|
|
||||||
'^.+\\.ts$': 'ts-jest'
|
|
||||||
},
|
|
||||||
verbose: true
|
|
||||||
}
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"clearMocks": true,
|
||||||
|
"moduleFileExtensions": ["js", "ts"],
|
||||||
|
"testEnvironment": "node",
|
||||||
|
"testMatch": ["**/*.test.ts"],
|
||||||
|
"testRunner": "jest-circus/runner",
|
||||||
|
"transform": {
|
||||||
|
"^.+\\.ts$": "ts-jest"
|
||||||
|
},
|
||||||
|
"verbose": true
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
42
package.json
42
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "rust-toolchain",
|
"name": "rust-toolchain",
|
||||||
"version": "1.0.1",
|
"version": "1.0.7",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Install the Rust toolchain",
|
"description": "Install the Rust toolchain",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
|
@ -9,9 +9,12 @@
|
||||||
"test": "__tests__"
|
"test": "__tests__"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "ncc build src/main.ts --minify",
|
"build": "rm -rf ./dist/* && ncc build src/main.ts --minify",
|
||||||
"watch": "ncc build src/main.ts --watch",
|
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
|
||||||
"test": "jest"
|
"lint": "tsc --noEmit && eslint 'src/**/*.ts' '__tests__/**/*.ts'",
|
||||||
|
"watch": "rm -rf ./dist/* && ncc build src/main.ts --watch",
|
||||||
|
"test": "jest -c jest.config.json",
|
||||||
|
"pretest": "git config core.hooksPath .githooks"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -29,18 +32,27 @@
|
||||||
"url": "https://github.com/actions-rs/toolchain/issues"
|
"url": "https://github.com/actions-rs/toolchain/issues"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.1.1",
|
"@actions-rs/core": "^0.1.6",
|
||||||
"@actions/exec": "^1.0.0",
|
"@actions/core": "^1.2.6",
|
||||||
"@actions/io": "^1.0.0",
|
"@actions/exec": "^1.0.4",
|
||||||
"download": "^7.1.0"
|
"@actions/io": "^1.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^24.0.13",
|
"@types/jest": "^26.0.15",
|
||||||
"@types/node": "^12.7.11",
|
"@types/node": "^14.14.7",
|
||||||
"@zeit/ncc": "^0.20.5",
|
"@typescript-eslint/eslint-plugin": "^4.8.1",
|
||||||
"jest": "^24.9.0",
|
"@typescript-eslint/parser": "^4.8.1",
|
||||||
"jest-circus": "^24.9.0",
|
"@zeit/ncc": "^0.22.3",
|
||||||
"ts-jest": "^24.1.0",
|
"eslint": "^7.13.0",
|
||||||
"typescript": "^3.5.1"
|
"eslint-config-prettier": "^6.15.0",
|
||||||
|
"eslint-plugin-prettier": "^3.1.4",
|
||||||
|
"jest": "^26.6.3",
|
||||||
|
"jest-circus": "^26.6.3",
|
||||||
|
"mock-env": "^0.2.0",
|
||||||
|
"npm-check-updates": "^10.2.1",
|
||||||
|
"prettier": "^2.1.2",
|
||||||
|
"temp-write": "^4.0.0",
|
||||||
|
"ts-jest": "^26.4.4",
|
||||||
|
"typescript": "^4.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
81
src/args.ts
81
src/args.ts
|
@ -1,43 +1,52 @@
|
||||||
import * as core from '@actions/core';
|
import { input } from "@actions-rs/core";
|
||||||
|
import { debug } from "@actions/core";
|
||||||
// Workaround for a GH bug: https://github.com/actions/toolkit/issues/127
|
import { existsSync, readFileSync } from "fs";
|
||||||
//
|
|
||||||
// For input `all-features: true` it will generate the `INPUT_ALL-FEATURES: true`
|
|
||||||
// env variable, which looks too weird.
|
|
||||||
// Here we are trying to get proper name `INPUT_NO_DEFAULT_FEATURES` first,
|
|
||||||
// and if it does not exist, trying the `INPUT_NO-DEFAULT-FEATURES`
|
|
||||||
function getInput(name: string, options?: core.InputOptions): string {
|
|
||||||
const inputFullName = name.replace(/-/g, '_');
|
|
||||||
let value = core.getInput(inputFullName, options);
|
|
||||||
if (value.length > 0) {
|
|
||||||
return value
|
|
||||||
}
|
|
||||||
|
|
||||||
return core.getInput(name)
|
|
||||||
}
|
|
||||||
|
|
||||||
function inputBoolean(name: string): boolean {
|
|
||||||
const value = getInput(name);
|
|
||||||
if (value == 'true' || value == '1') {
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
export interface ToolchainOptions {
|
export interface ToolchainOptions {
|
||||||
name: string,
|
name: string;
|
||||||
target?: string,
|
target: string | undefined;
|
||||||
default: boolean,
|
default: boolean;
|
||||||
override: boolean
|
override: boolean;
|
||||||
|
profile: string | undefined;
|
||||||
|
components: string[] | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function toolchain_args(): ToolchainOptions {
|
function determineToolchain(overrideFile: string): string {
|
||||||
|
const toolchainInput = input.getInput("toolchain", { required: false });
|
||||||
|
|
||||||
|
if (toolchainInput) {
|
||||||
|
debug(`using toolchain from input: ${toolchainInput}`);
|
||||||
|
return toolchainInput;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!existsSync(overrideFile)) {
|
||||||
|
throw new Error(
|
||||||
|
"toolchain input was not given and repository does not have a rust-toolchain file"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const rustToolchainFile = readFileSync(overrideFile, {
|
||||||
|
encoding: "utf-8",
|
||||||
|
flag: "r",
|
||||||
|
}).trim();
|
||||||
|
|
||||||
|
debug(`using toolchain from rust-toolchain file: ${rustToolchainFile}`);
|
||||||
|
|
||||||
|
return rustToolchainFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getToolchainArgs(overrideFile: string): ToolchainOptions {
|
||||||
|
let components: string[] | undefined = input.getInputList("components");
|
||||||
|
if (components && components.length === 0) {
|
||||||
|
components = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
name: getInput('toolchain', {required: true}),
|
name: determineToolchain(overrideFile),
|
||||||
target: getInput('target') || undefined,
|
target: input.getInput("target") || undefined,
|
||||||
default: inputBoolean('default'),
|
default: input.getInputBool("default"),
|
||||||
override: inputBoolean('override')
|
override: input.getInputBool("override"),
|
||||||
|
profile: input.getInput("profile") || undefined,
|
||||||
|
components: components,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
149
src/main.ts
149
src/main.ts
|
@ -1,95 +1,92 @@
|
||||||
const os = require('os');
|
import * as core from "@actions/core";
|
||||||
const fs = require('fs');
|
import path from "path";
|
||||||
const path = require('path');
|
|
||||||
const https = require('https');
|
|
||||||
|
|
||||||
const download = require('download');
|
import * as args from "./args";
|
||||||
|
import * as versions from "./versions";
|
||||||
|
import { RustUp, ToolchainOptions } from "@actions-rs/core";
|
||||||
|
|
||||||
import * as core from '@actions/core';
|
async function run(): Promise<void> {
|
||||||
import * as exec from '@actions/exec';
|
// we use path.join to make sure this works on Windows, Linux and MacOS
|
||||||
import * as io from '@actions/io';
|
const toolchainOverridePath = path.join(process.cwd(), "rust-toolchain");
|
||||||
|
|
||||||
import * as args from './args';
|
const opts = args.getToolchainArgs(toolchainOverridePath);
|
||||||
|
const rustup = await RustUp.getOrInstall();
|
||||||
|
await rustup.call(["show"]);
|
||||||
|
|
||||||
function downloadRustInit(url: string, name: string): Promise<string> {
|
let shouldSelfUpdate = false;
|
||||||
const absPath = path.join(os.tmpdir(), name);
|
if (opts.profile && !(await rustup.supportProfiles())) {
|
||||||
|
shouldSelfUpdate = true;
|
||||||
return new Promise((resolve, reject) => {
|
}
|
||||||
let req = download(url);
|
if (opts.components && !(await rustup.supportComponents())) {
|
||||||
let output = fs.createWriteStream(absPath, {
|
shouldSelfUpdate = true;
|
||||||
mode: 0o755
|
}
|
||||||
});
|
if (shouldSelfUpdate) {
|
||||||
|
core.startGroup("Updating rustup");
|
||||||
req.pipe(output);
|
try {
|
||||||
req.on('end', () => {
|
await rustup.selfUpdate();
|
||||||
output.close(resolve);
|
} finally {
|
||||||
});
|
core.endGroup();
|
||||||
req.on('error', reject);
|
}
|
||||||
output.on('error', reject);
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
return absPath;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async function get_rustup(toolchain: string): Promise<string> {
|
|
||||||
try {
|
|
||||||
const foundPath = await io.which('rustup', true);
|
|
||||||
core.debug(`Found rustup at ${foundPath}`);
|
|
||||||
return foundPath;
|
|
||||||
} catch (error) {
|
|
||||||
core.warning('Unable to find rustup, installing it now');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let args = [
|
if (opts.profile) {
|
||||||
'-y',
|
// @ts-ignore: TS2345
|
||||||
'--default-toolchain',
|
await rustup.setProfile(opts.profile);
|
||||||
toolchain,
|
|
||||||
];
|
|
||||||
|
|
||||||
// Note: `target` input can't be used here for `--default-host` argument, see #8
|
|
||||||
|
|
||||||
switch (process.platform) {
|
|
||||||
case 'darwin':
|
|
||||||
case 'linux': // Should be installed already, but just in case
|
|
||||||
const rustupSh = await downloadRustInit('https://sh.rustup.rs', 'rustup-init.sh');
|
|
||||||
await exec.exec(rustupSh, args);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'win32':
|
|
||||||
const rustupExe = await downloadRustInit('http://win.rustup.rs', 'rustup-init.exe');
|
|
||||||
await exec.exec(rustupExe, args);
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
throw new Error(`Unknown platform ${process.platform}, can't install rustup`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
core.addPath(path.join(process.env['HOME'], '.cargo', 'bin'));
|
const installOptions: ToolchainOptions = {
|
||||||
|
default: opts.default,
|
||||||
return 'rustup';
|
override: opts.override,
|
||||||
}
|
};
|
||||||
|
if (opts.components) {
|
||||||
async function run() {
|
installOptions.components = opts.components;
|
||||||
const opts = args.toolchain_args();
|
}
|
||||||
const rustup = await get_rustup(opts.name);
|
// We already did it just now, there is no reason to do that again,
|
||||||
|
// so it would skip few network calls.
|
||||||
await exec.exec(rustup, ['toolchain', 'install', opts.name]);
|
if (shouldSelfUpdate) {
|
||||||
|
installOptions.noSelfUpdate = true;
|
||||||
if (opts.default) {
|
|
||||||
await exec.exec(rustup, ['default', opts.name]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (opts.override) {
|
// Extra funny case.
|
||||||
await exec.exec(rustup, ['override', 'set', opts.name]);
|
// Due to `rustup` issue (https://github.com/rust-lang/rustup/issues/2146)
|
||||||
|
// right now installing `nightly` toolchain with extra components might fail
|
||||||
|
// if that specific `nightly` version does not have this component
|
||||||
|
// available.
|
||||||
|
//
|
||||||
|
// See https://github.com/actions-rs/toolchain/issues/53 also.
|
||||||
|
//
|
||||||
|
// By default `rustup` does not downgrade, as it does when you are
|
||||||
|
// updating already installed `nightly`, so we need to pass the
|
||||||
|
// corresponding flag manually.
|
||||||
|
//
|
||||||
|
// We are doing it only if both following conditions apply:
|
||||||
|
//
|
||||||
|
// 1. Requested toolchain is `"nightly"` (exact string match).
|
||||||
|
// 2. At least one component is requested.
|
||||||
|
//
|
||||||
|
// All other cases are not triggering automatic downgrade,
|
||||||
|
// for example, installing specific nightly version
|
||||||
|
// as in `"nightly-2020-03-20"` or `"stable"`.
|
||||||
|
//
|
||||||
|
// Motivation is that users probably want the latest one nightly
|
||||||
|
// with rustfmt and clippy (miri, etc) and they don't really care
|
||||||
|
// about what exact nightly it is.
|
||||||
|
// In case if it's not the nightly at all or it is a some specific
|
||||||
|
// nightly version, they know what they are doing.
|
||||||
|
if (opts.name == "nightly" && opts.components) {
|
||||||
|
installOptions.allowDowngrade = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await rustup.installToolchain(opts.name, installOptions);
|
||||||
|
|
||||||
if (opts.target) {
|
if (opts.target) {
|
||||||
await exec.exec(rustup, ['target', 'add', '--toolchain', opts.name, opts.target]);
|
await rustup.addTarget(opts.target, opts.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await versions.gatherInstalledVersions();
|
||||||
}
|
}
|
||||||
|
|
||||||
async function main() {
|
async function main(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
await run();
|
await run();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
|
@ -0,0 +1,114 @@
|
||||||
|
import * as exec from "@actions/exec";
|
||||||
|
import * as core from "@actions/core";
|
||||||
|
|
||||||
|
interface Version {
|
||||||
|
long: string;
|
||||||
|
hash: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Try to parse the version parts and return them.
|
||||||
|
*
|
||||||
|
* It is important to note that some components are not providing
|
||||||
|
* all the expected information, ex. `rustup` on `macOS-latest` VM image
|
||||||
|
* does not has the hash in the version string,
|
||||||
|
* so this function might throw an error.
|
||||||
|
*
|
||||||
|
* As a fallback, `parseShort` function can be used.
|
||||||
|
*/
|
||||||
|
function parseFull(stdout: string): Version {
|
||||||
|
const regex = /\S+\s((\S+)\s\((\S+)\s(\S+)\))/m;
|
||||||
|
stdout = stdout.trim();
|
||||||
|
const matches = regex.exec(stdout);
|
||||||
|
if (matches == null) {
|
||||||
|
throw new Error(`Unable to parse version from the "${stdout}" string`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
long: matches[1],
|
||||||
|
hash: matches[3],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseShort(stdout: string): string {
|
||||||
|
const regex = /\S+\s(.+)/m;
|
||||||
|
stdout = stdout.trim();
|
||||||
|
const matches = regex.exec(stdout);
|
||||||
|
if (matches == null) {
|
||||||
|
core.warning(`Unable to determine version from the "${stdout}" string`);
|
||||||
|
return "";
|
||||||
|
} else {
|
||||||
|
return matches[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getStdout(
|
||||||
|
exe: string,
|
||||||
|
args: string[],
|
||||||
|
options?: {}
|
||||||
|
): Promise<string> {
|
||||||
|
let stdout = "";
|
||||||
|
const resOptions = Object.assign({}, options, {
|
||||||
|
listeners: {
|
||||||
|
stdout: (buffer: Buffer): void => {
|
||||||
|
stdout += buffer.toString();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await exec.exec(exe, args, resOptions);
|
||||||
|
|
||||||
|
return stdout;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch currently used `rustc` version
|
||||||
|
*/
|
||||||
|
async function rustc(): Promise<void> {
|
||||||
|
const stdout = await getStdout("rustc", ["-V"]);
|
||||||
|
try {
|
||||||
|
const version = parseFull(stdout);
|
||||||
|
|
||||||
|
core.setOutput("rustc", version.long);
|
||||||
|
core.setOutput("rustc_hash", version.hash);
|
||||||
|
} catch (e) {
|
||||||
|
core.warning(e);
|
||||||
|
core.setOutput("rustc", parseShort(stdout));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch currently used `cargo` version
|
||||||
|
*/
|
||||||
|
async function cargo(): Promise<void> {
|
||||||
|
const stdout = await getStdout("cargo", ["-V"]);
|
||||||
|
try {
|
||||||
|
const version = parseFull(stdout);
|
||||||
|
|
||||||
|
core.setOutput("cargo", version.long);
|
||||||
|
} catch (e) {
|
||||||
|
core.setOutput("cargo", parseShort(stdout));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function rustup(): Promise<void> {
|
||||||
|
const stdout = await getStdout("rustup", ["-V"]);
|
||||||
|
try {
|
||||||
|
const version = parseFull(stdout);
|
||||||
|
core.setOutput("rustup", version.long);
|
||||||
|
} catch (e) {
|
||||||
|
core.setOutput("rustup", parseShort(stdout));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function gatherInstalledVersions(): Promise<void> {
|
||||||
|
try {
|
||||||
|
core.startGroup("Gathering installed versions");
|
||||||
|
|
||||||
|
await rustc();
|
||||||
|
await cargo();
|
||||||
|
await rustup();
|
||||||
|
} finally {
|
||||||
|
core.endGroup();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"include": [
|
||||||
|
"src/**/*.ts",
|
||||||
|
"__tests__/**/*.ts"
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,63 +1,32 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
/* Basic Options */
|
"allowJs": false,
|
||||||
// "incremental": true, /* Enable incremental compilation */
|
"checkJs": false,
|
||||||
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
|
"esModuleInterop": true,
|
||||||
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
"forceConsistentCasingInFileNames": true,
|
||||||
// "allowJs": true, /* Allow javascript files to be compiled. */
|
"module": "commonjs",
|
||||||
// "checkJs": true, /* Report errors in .js files. */
|
"moduleResolution": "node",
|
||||||
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
"newLine": "LF",
|
||||||
// "declaration": true, /* Generates corresponding '.d.ts' file. */
|
"noEmitOnError": true,
|
||||||
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
|
"noErrorTruncation": true,
|
||||||
// "sourceMap": true, /* Generates corresponding '.map' file. */
|
"noFallthroughCasesInSwitch": true,
|
||||||
// "outFile": "./", /* Concatenate and emit output to single file. */
|
"noImplicitAny": true,
|
||||||
"outDir": "./lib", /* Redirect output structure to the directory. */
|
"noImplicitReturns": true,
|
||||||
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
"noImplicitThis": true,
|
||||||
// "composite": true, /* Enable project compilation */
|
"noUnusedLocals": true,
|
||||||
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
|
"noUnusedParameters": true,
|
||||||
// "removeComments": true, /* Do not emit comments to output. */
|
"outDir": "dist",
|
||||||
// "noEmit": true, /* Do not emit outputs. */
|
"pretty": true,
|
||||||
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
|
"removeComments": true,
|
||||||
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
"resolveJsonModule": true,
|
||||||
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
"strict": true,
|
||||||
|
"suppressImplicitAnyIndexErrors": false,
|
||||||
/* Strict Type-Checking Options */
|
"target": "es2018",
|
||||||
"strict": true, /* Enable all strict type-checking options. */
|
"declaration": false,
|
||||||
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
|
"sourceMap": false,
|
||||||
// "strictNullChecks": true, /* Enable strict null checks. */
|
"typeRoots": ["./types", "./node_modules/@types"]
|
||||||
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
|
},
|
||||||
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
|
"include": [
|
||||||
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
|
"src/**/*.ts"
|
||||||
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
|
]
|
||||||
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
|
|
||||||
|
|
||||||
/* Additional Checks */
|
|
||||||
// "noUnusedLocals": true, /* Report errors on unused locals. */
|
|
||||||
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
||||||
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
||||||
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
||||||
|
|
||||||
/* Module Resolution Options */
|
|
||||||
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
|
||||||
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
|
|
||||||
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
|
||||||
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
|
||||||
// "typeRoots": [], /* List of folders to include type definitions from. */
|
|
||||||
// "types": [], /* Type declaration files to be included in compilation. */
|
|
||||||
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
|
||||||
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
|
||||||
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
|
||||||
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
||||||
|
|
||||||
/* Source Map Options */
|
|
||||||
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
|
|
||||||
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
||||||
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
|
|
||||||
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
|
|
||||||
|
|
||||||
/* Experimental Options */
|
|
||||||
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
|
||||||
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
|
||||||
},
|
|
||||||
"exclude": ["node_modules", "**/*.test.ts"]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
declare module "mock-env" {
|
||||||
|
function morph<T>(
|
||||||
|
callback: () => T,
|
||||||
|
vars: object,
|
||||||
|
toRemove?: string[]
|
||||||
|
): any;
|
||||||
|
}
|
Loading…
Reference in New Issue