File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
doc/tutorials/hello_world Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
- name : retrieve merge target info
9
9
run : git fetch origin $GITHUB_BASE_REF
10
10
- run : sudo apt-get update
11
- - run : sudo apt-get install -y clang-format-12
11
+ - run : sudo apt-get install -y clang-format-17
12
12
- name : run git-clang-format
13
13
run : |
14
14
target=$(git rev-parse origin/$GITHUB_BASE_REF)
15
- git-clang-format-12 --quiet --diff $target > clang-format-diff
15
+ git-clang-format-17 --quiet --diff $target > clang-format-diff
16
16
lint=$(grep -v --color=never "no modified files to format" clang-format-diff || true)
17
17
if [ ! -z "$lint" ]; then echo "format errors, inspect the clang-format-diff artifact for info"; exit 1; else exit 0; fi
18
18
shell : bash
34
34
fetch-depth : 0
35
35
- uses : cachix/install-nix-action@v13
36
36
with :
37
- nix_path : nixpkgs=channel:nixos-22 .05
37
+ nix_path : nixpkgs=channel:nixos-24 .05
38
38
- run : nix-shell --command "./autogen.sh; ./configure --enable-docs; make html"
Original file line number Diff line number Diff line change 1
- { pkgs ? import ( builtins . fetchTarball "https://github.com/NixOS/nixpkgs/archive/22 .05.tar.gz" ) { }
1
+ { pkgs ? import ( builtins . fetchTarball "https://github.com/NixOS/nixpkgs/archive/24 .05.tar.gz" ) { }
2
2
} :
3
3
pkgs // rec {
4
4
stdenv = pkgs . gcc12Stdenv ;
Original file line number Diff line number Diff line change 12
12
Setup/Teardown API
13
13
~~~~~~~~~~~~~~~~~~
14
14
15
- .. doxygenfunction :: aml_init
15
+ .. doxygengroup :: aml
16
+ :content-only:
16
17
17
- .. doxygenfunction :: aml_finalize
18
18
19
19
Version API
20
20
~~~~~~~~~~~
Original file line number Diff line number Diff line change 3
3
with pkgs ;
4
4
mkShell . override { stdenv = pkgs . stdenv ; } {
5
5
inputsFrom = [ aml ] ;
6
- nativeBuildInputs = [ autoreconfHook pkgconfig ] ;
6
+ nativeBuildInputs = [ autoreconfHook pkgconf ] ;
7
7
buildInputs = [
8
8
# deps for docs
9
9
graphviz
You can’t perform that action at this time.
0 commit comments