mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
CI: cleanup
This commit is contained in:
parent
9873d2bc98
commit
e5df60172a
3 changed files with 25 additions and 9 deletions
9
.github/workflows/cachix.yml
vendored
9
.github/workflows/cachix.yml
vendored
|
@ -23,12 +23,17 @@ jobs:
|
|||
- maximal
|
||||
steps:
|
||||
- uses: easimon/maximize-build-space@v6
|
||||
name: Maximize build space
|
||||
with:
|
||||
overprovision-lvm: true
|
||||
remove-android: true
|
||||
remove-dotnet: true
|
||||
remove-haskell: true
|
||||
remove-codeql: true
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
name: Checkout
|
||||
|
||||
- uses: cachix/install-nix-action@v20
|
||||
with:
|
||||
extra_nix_config: |
|
||||
|
@ -36,14 +41,18 @@ jobs:
|
|||
auto-optimise-store = true
|
||||
experimental-features = nix-command flakes
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
|
||||
- uses: cachix/cachix-action@v12
|
||||
with:
|
||||
authToken: ${{ secrets.CACHIX_TOKEN }}
|
||||
extraPullNames: nix-community
|
||||
name: neovim-flake
|
||||
|
||||
- name: Set default git branch (to reduce log spam)
|
||||
run: git config --global init.defaultBranch main
|
||||
|
||||
- name: Validate Flakes
|
||||
run: nix flake check
|
||||
|
||||
- name: Build neovim-flake with default settings
|
||||
run: nix build .#${{ matrix.package }} --print-build-logs
|
||||
|
|
20
.github/workflows/check-docs.yml
vendored
20
.github/workflows/check-docs.yml
vendored
|
@ -14,10 +14,10 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
package:
|
||||
- docs
|
||||
- docs-html
|
||||
- docs-manpages
|
||||
- docs-json
|
||||
- docs
|
||||
- docs-html
|
||||
- docs-manpages
|
||||
- docs-json
|
||||
steps:
|
||||
- uses: easimon/maximize-build-space@v6
|
||||
with:
|
||||
|
@ -25,25 +25,29 @@ jobs:
|
|||
remove-android: true
|
||||
remove-dotnet: true
|
||||
remove-haskell: true
|
||||
|
||||
- uses: cachix/install-nix-action@v20
|
||||
with:
|
||||
extra_nix_config: |
|
||||
extra_nix_config: |
|
||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||
auto-optimise-store = true
|
||||
experimental-features = nix-command flakes
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
name: Checkout
|
||||
|
||||
- name: Set default git branch (to reduce log spam)
|
||||
run: git config --global init.defaultBranch main
|
||||
- name: Validate Flakes
|
||||
|
||||
- name: Validate Flake
|
||||
run: nix flake check
|
||||
|
||||
- name: Build neovim-flake with default settings
|
||||
run: nix build .#${{ matrix.package }} --print-build-logs
|
||||
|
||||
- name: Upload doc artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: doc
|
||||
path: result/share/doc/neovim-flake/
|
||||
|
||||
|
||||
|
|
5
.github/workflows/manual.yml
vendored
5
.github/workflows/manual.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
paths:
|
||||
# build the manuals only when docs directory is updated
|
||||
- docs/**
|
||||
|
||||
|
@ -25,12 +25,15 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v18
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
nix build '.#docs'
|
||||
cp -r result/share/doc/neovim-flake public
|
||||
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue