Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit aa9c1a8

Browse files
committed
wip: fixing the github actions ci/tests
1 parent 7d65b70 commit aa9c1a8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@ jobs:
2020
python-version: '3.12'
2121

2222
- name: Install build dependencies
23-
run: sudo apt-get update && sudo apt-get install -y git cmake ninja-build build-essential python3 gcc
23+
run: sudo apt-get update && sudo apt-get install -y git cmake ninja-build build-essential python3 gcc curl
24+
25+
- name: Download libqs-python
26+
run: |
27+
curl -L https://github.com/open-quantum-safe/liboqs-python/archive/refs/tags/0.12.0.tar.gz -o liboqs-python.tar.gz
28+
mkdir liboqs-python
29+
tar -xzf liboqs-python.tar.gz --strip-components=1 -C liboqs-python
2430
2531
- name: Build and install liboqs and its Python bindings
2632
run: |
27-
git clone --depth=1 https://github.com/open-quantum-safe/liboqs-python
2833
cd liboqs-python
2934
pip install .
3035
- name: Install Python dependencies

0 commit comments

Comments
 (0)