forked from mirrors/jj
2786d50bd3
Bumps the github-dependencies group with 2 updates: [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) and [DeterminateSystems/magic-nix-cache-action](https://github.com/determinatesystems/magic-nix-cache-action). Updates `DeterminateSystems/nix-installer-action` from 8 to 9 - [Release notes](https://github.com/determinatesystems/nix-installer-action/releases) - [Commits](07b8bcba1b...cd46bde16a
) Updates `DeterminateSystems/magic-nix-cache-action` from a04e6275a6bea232cd04fc6f3cbf20d4cb02a3e1 to 1402a2dd8f56a6a6306c015089c5086f5e1ca3ef - [Release notes](https://github.com/determinatesystems/magic-nix-cache-action/releases) - [Commits](a04e6275a6...1402a2dd8f
) --- updated-dependencies: - dependency-name: DeterminateSystems/nix-installer-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-dependencies - dependency-name: DeterminateSystems/magic-nix-cache-action dependency-type: direct:production dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
552 B
YAML
22 lines
552 B
YAML
name: Nix on Linux
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
nix:
|
|
runs-on: ubuntu-latest
|
|
name: nix-build
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: DeterminateSystems/nix-installer-action@cd46bde16ab981b0a7b2dce0574509104543276e
|
|
- uses: DeterminateSystems/magic-nix-cache-action@1402a2dd8f56a6a6306c015089c5086f5e1ca3ef
|
|
- run: nix build --print-build-logs --show-trace
|