-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1318 from cmastalli/topic/ci-improvement
CI improvements
- Loading branch information
Showing
4 changed files
with
47 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: "NIX" | ||
|
||
# This determines when this workflow is run | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'doc/**' | ||
- '.gitlab-ci.yml' | ||
- '.gitignore' | ||
- '.pre-commit-config.yaml' | ||
- '*.md' | ||
- 'LICENSE' | ||
- 'pyproject.toml' | ||
- 'package.xml' | ||
- 'dependencies.rosintall' | ||
pull_request: | ||
paths-ignore: | ||
- 'doc/**' | ||
- '.gitlab-ci.yml' | ||
- '.gitignore' | ||
- '.pre-commit-config.yaml' | ||
- '*.md' | ||
- 'LICENSE' | ||
- 'pyproject.toml' | ||
- 'package.xml' | ||
- 'dependencies.rosintall' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
nix: | ||
runs-on: "${{ matrix.os }}-latest" | ||
strategy: | ||
matrix: | ||
os: [ubuntu, macos] | ||
name: (${{ matrix.os }}) | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: cachix/install-nix-action@v30 | ||
- uses: cachix/cachix-action@v15 | ||
with: | ||
name: gepetto | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
- run: nix build -L |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters