CI: cleanup

This commit is contained in:
NotAShelf 2023-10-01 16:17:48 +03:00
parent 9873d2bc98
commit e5df60172a
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
3 changed files with 25 additions and 9 deletions

View File

@ -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

View File

@ -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/

View File

@ -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: