2019-10-02 14:06:28 +00:00
|
|
|
# install-nix-action
|
2019-09-29 19:52:02 +00:00
|
|
|
|
2019-10-02 14:06:28 +00:00
|
|
|
![github actions badge](https://github.com/cachix/install-nix-action/workflows/install-nix-action%20test/badge.svg)
|
2019-09-29 19:52:02 +00:00
|
|
|
|
2019-10-02 13:36:51 +00:00
|
|
|
Installs [Nix](https://nixos.org/nix/) on GitHub Actions for the supported platforms: Linux and macOS.
|
2019-09-29 19:52:02 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Create `.github/workflows/test.yml` in your repo with the following contents:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
name: "Test"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-03-01 10:47:40 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-06-03 15:18:31 +00:00
|
|
|
- uses: cachix/install-nix-action@v10
|
2020-05-28 14:25:05 +00:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2019-09-29 19:52:02 +00:00
|
|
|
- run: nix-build
|
|
|
|
```
|
|
|
|
|
|
|
|
See also [cachix-action](https://github.com/cachix/cachix-action) for
|
2019-10-02 14:06:28 +00:00
|
|
|
simple binary cache setup to speed up your builds and share binaries
|
|
|
|
with developers.
|
2019-09-29 19:52:02 +00:00
|
|
|
|
2020-05-27 14:59:17 +00:00
|
|
|
## Options `with: ...`
|
|
|
|
|
2020-05-28 14:25:05 +00:00
|
|
|
- `install_url`: specify URL to install Nix from (mostly useful for testing non-stable releases)
|
|
|
|
|
|
|
|
- `nix_path`: set `NIX_PATH` environment variable (if set `skip_adding_nixpkgs_channel` will be implicitly enabled)
|
2020-05-27 14:59:17 +00:00
|
|
|
|
|
|
|
- `skip_adding_nixpkgs_channel`: set to `true` to skip adding nixpkgs-unstable channel (and save ~5s for each job build)
|
2020-08-25 16:07:38 +00:00
|
|
|
- `extra_nix_config`: gets appended to `/etc/nix/nix.conf` if passed.
|
2020-05-27 14:59:17 +00:00
|
|
|
|
2019-09-29 19:52:02 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
## Hacking
|
|
|
|
|
2019-10-02 13:36:51 +00:00
|
|
|
Install the dependencies
|
2019-09-29 19:52:02 +00:00
|
|
|
```bash
|
|
|
|
$ yarn install
|
|
|
|
```
|
|
|
|
|
|
|
|
Build the typescript
|
|
|
|
```bash
|
|
|
|
$ yarn build
|
|
|
|
```
|
|
|
|
|
2019-10-02 13:36:51 +00:00
|
|
|
Run the tests :heavy_check_mark:
|
2019-09-29 19:52:02 +00:00
|
|
|
```bash
|
|
|
|
$ yarn test
|
|
|
|
```
|