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 b116bd6 commit bbc5447Copy full SHA for bbc5447
2 files changed
.github/workflows/tests.yml
@@ -89,6 +89,14 @@ jobs:
89
run: |
90
.\build_windows.cmd
91
92
+ - name: Archive build artifacts
93
+ # more details https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts
94
+ uses: actions/upload-artifact@v4
95
+ with:
96
+ name: dist-linux-py${{ matrix.python-version }}
97
+ path: |
98
+ dist
99
+ retention-days: 1
100
- name: Upgrade pip
101
102
pip install --upgrade --user pip
build_windows.cmd
@@ -1,6 +1,6 @@
1
mkdir build_dir
2
cd build_dir
3
-cmake -S .. -B . -DOPENSSL_ROOT_DIR="C:\Program Files\OpenSSL"
+cmake -S .. -B . -DOPENSSL_ROOT_DIR="C:\Program Files\OpenSSL"
4
cmake --build . --parallel --config Release
5
6
move "src\bindings\PyDP\Release\_pydp.*-win_amd64.pyd" "..\src\pydp\"
0 commit comments