We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7d3ed commit 7f16f91Copy full SHA for 7f16f91
.github/workflows/test.yaml
@@ -83,10 +83,12 @@ jobs:
83
- uses: actions/checkout@v4
84
- name: Install
85
run: brew install ${{ matrix.config.brew_package }}
86
+ - name: test
87
+ run: find ${{ matrix.config.cc }}/../../ -maxdepth 3 -type d -exec ls -ld "{}" \;
88
- name: Build Debug
- run: make CMAKE_PRESET=Unix_x64_Debug generate build
89
+ run: make CMAKE_PRESET=Unix_${{ matrix.config.arch }}_Debug generate build
90
- name: Build Release
- run: make CMAKE_PRESET=Unix_x64_Release generate build
91
+ run: make CMAKE_PRESET=Unix_${{ matrix.config.arch }}_Release generate build
92
- name: Test
93
run: make test
94
windows:
0 commit comments