Skip to content

Commit c047be9

Browse files
committed
Fix outdated upload artifact parameters
1 parent 9e19d6c commit c047be9

File tree

1 file changed

+1
-32
lines changed

1 file changed

+1
-32
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -106,35 +106,4 @@ jobs:
106106
- uses: actions/upload-artifact@v4
107107
with:
108108
name: "pr_build"
109-
path: build/Release/distr/dist
110-
111-
build-debug:
112-
name: Build and test in Debug mode
113-
#currently cannot run on Linux & Debug due to a bug in YAML parser: issue #218
114-
runs-on: macos-latest
115-
steps:
116-
- uses: actions/checkout@v4
117-
118-
- name: Install pybind11 (via pip)
119-
run: pip install pybind11
120-
121-
- name: Install pybind11 (Homebrew)
122-
run: |
123-
brew install pybind11
124-
125-
- name: Install dependencies (Debug)
126-
run: |
127-
mkdir -p build/scripts
128-
cd build/scripts
129-
cmake ../.. -DCMAKE_BUILD_TYPE=Debug
130-
131-
- name: Debug build
132-
run: |
133-
cd build/scripts
134-
make -j2 && make install
135-
136-
- name: C++ Tests
137-
run: |
138-
cd build/scripts
139-
../Debug/bin/unit_tests
140-
109+
path: dist

0 commit comments

Comments
 (0)