Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swap out hpke-spec for hpke-rs #17

Merged
merged 7 commits into from
Aug 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
args: --release --sdist -i python${{ matrix.python-version }} -o dist
- name: Install wheel
run: |
pip install hpke_spec --no-index --find-links dist --force-reinstall
python -c "import hpke_spec"
pip install hybrid_pke --no-index --find-links dist --force-reinstall
python -c "import hybrid_pke"
- name: Test wheel
run: |
pip install pytest absl-py
Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
args: --release -i ${{ steps.py3.outputs.python-path }} -o dist
- name: Install wheel
run: |
pip install hpke_spec --no-index --find-links dist --force-reinstall
python -c "import hpke_spec"
pip install hybrid_pke --no-index --find-links dist --force-reinstall
python -c "import hybrid_pke"
- name: Test wheel
run: |
pip install pytest absl-py
Expand Down Expand Up @@ -112,8 +112,8 @@ jobs:
args: --release -i ${{ steps.py3.outputs.python-path }} --out dist --sdist
- name: Install wheel - x86_64
run: |
pip install hpke_spec --no-index --find-links dist --force-reinstall
python -c "import hpke_spec"
pip install hybrid_pke --no-index --find-links dist --force-reinstall
python -c "import hybrid_pke"
- name: Test wheel
run: |
pip install pytest absl-py
Expand All @@ -125,8 +125,8 @@ jobs:
args: --release --universal2 -o dist
- name: Install wheel - universal2
run: |
pip install hpke_spec --no-index --find-links dist --force-reinstall
python -c "import hpke_spec"
pip install hybrid_pke --no-index --find-links dist --force-reinstall
python -c "import hybrid_pke"
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand Down
Loading