Skip to content

Commit 8201655

Browse files
committed
disable other ci jobs, add find -ls since no cmake logs printed
1 parent 508b78d commit 8201655

File tree

2 files changed

+1
-40
lines changed

2 files changed

+1
-40
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -55,43 +55,3 @@ jobs:
5555
run: |
5656
cd ${{ github.workspace }}
5757
CI_CONFIG="ci/configs/freebsd.bash" bash ci/scripts/ci.sh
58-
59-
build-macos:
60-
runs-on: macos-latest
61-
name: build • macos
62-
63-
steps:
64-
- uses: actions/checkout@v5
65-
66-
- name: Install dependencies
67-
env:
68-
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
69-
run: |
70-
brew install --quiet ninja capnp
71-
72-
- name: Run CI script
73-
run: |
74-
CI_CONFIG="ci/configs/macos.bash" bash ci/scripts/ci.sh
75-
76-
build:
77-
runs-on: ubuntu-latest
78-
79-
strategy:
80-
fail-fast: false
81-
matrix:
82-
config: [default, llvm, gnu32, sanitize, olddeps, newdeps]
83-
84-
name: build • ${{ matrix.config }}
85-
86-
steps:
87-
- uses: actions/checkout@v5
88-
89-
- name: Install Nix
90-
uses: cachix/install-nix-action@v31 # 2025-05-27, from https://github.com/cachix/install-nix-action/tags
91-
with:
92-
nix_path: nixpkgs=channel:nixos-25.05 # latest release
93-
94-
- name: Run CI script
95-
env:
96-
CI_CONFIG: ci/configs/${{ matrix.config }}.bash
97-
run: ci/scripts/run.sh

ci/scripts/ci.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ if ! cmake "$src_dir" "${cmake_args[@]}"; then
4747
# Could add --trace / --trace-expand here too but they are very verbose.
4848
cmake_args+=(--debug-find --debug-trycompile --log-level=DEBUG -DCMAKE_TRY_COMPILE_NO_CLEAN=ON)
4949
cmake "$src_dir" "${cmake_args[@]}" || echo "cmake exited with $?"
50+
find . -ls
5051
find . -type f -name CMakeOutput.log -exec sh -c 'echo "--- {} ---"; cat "{}"' \;
5152
find . -type f -name CMakeError.log -exec sh -c 'echo "--- {} ---"; cat "{}"' \;
5253
find CMakeFiles -type d -name 'CMakeScratch*' | while read -r d; do

0 commit comments

Comments
 (0)