mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-15 21:12:31 +00:00
fix: --print-build-logs
This commit is contained in:
parent
ec2a2b8d13
commit
aafc823c75
47
.github/workflows/build-linux.yml
vendored
47
.github/workflows/build-linux.yml
vendored
|
|
@ -1,32 +1,19 @@
|
||||||
name: Build (Linux, x86-64)
|
name: Build (Linux, x86-64)
|
||||||
|
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
paths:
|
||||||
paths:
|
- '**.cpp'
|
||||||
- '**.cpp'
|
- '**.h'
|
||||||
- '**.h'
|
- '**.c'
|
||||||
- '**.c'
|
- '**.cc'
|
||||||
- '**.cc'
|
- '**.cxx'
|
||||||
- '**.cxx'
|
- '**.hh'
|
||||||
- '**.hh'
|
- '**.hpp'
|
||||||
- '**.hpp'
|
- '**.hxx'
|
||||||
- '**.hxx'
|
- '**.inl'
|
||||||
- '**.inl'
|
- "**meson.build"
|
||||||
- "**.meson.build"
|
- "flake.nix"
|
||||||
- '.github/workflows/build-linux.yml*'
|
- '.github/workflows/build-linux.yml'
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- '**.cpp'
|
|
||||||
- '**.h'
|
|
||||||
- '**.c'
|
|
||||||
- '**.cc'
|
|
||||||
- '**.cxx'
|
|
||||||
- '**.hh'
|
|
||||||
- '**.hpp'
|
|
||||||
- '**.hxx'
|
|
||||||
- '**.inl'
|
|
||||||
- "**.meson.build"
|
|
||||||
- '.github/workflows/build-linux.yml*'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
|
|
@ -40,8 +27,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-unstable
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: nix build --print-build-logs
|
||||||
|
|
||||||
- name: Flake integrity
|
- name: Flake integrity
|
||||||
run: nix flake check
|
run: nix flake check
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: nix build
|
|
||||||
|
|
|
||||||
29
.github/workflows/clang-format.yml
vendored
29
.github/workflows/clang-format.yml
vendored
|
|
@ -1,20 +1,19 @@
|
||||||
name: Check Format (Linux, x86-64)
|
name: Check Format (Linux, x86-64)
|
||||||
|
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
paths:
|
||||||
paths:
|
- '**.cpp'
|
||||||
- '**.cpp'
|
- '**.h'
|
||||||
- '**.h'
|
- '**.c'
|
||||||
- '**.c'
|
- '**.cc'
|
||||||
- '**.cc'
|
- '**.cxx'
|
||||||
- '**.cxx'
|
- '**.hh'
|
||||||
- '**.hh'
|
- '**.hpp'
|
||||||
- '**.hpp'
|
- '**.hxx'
|
||||||
- '**.hxx'
|
- '**.inl'
|
||||||
- '**.inl'
|
- "**meson.build"
|
||||||
- '.clang-format'
|
- "flake.nix"
|
||||||
- '.github/workflows/clang-format.yml'
|
- '.github/workflows/build-linux.yml'
|
||||||
- '.github/scripts/check-clang-format.sh'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
formatting-check:
|
formatting-check:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue