aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJ08nY2023-02-17 17:21:27 +0100
committerJ08nY2023-02-17 17:21:27 +0100
commit6cbb129e1f7dfa4d4ca248f2f246781433a4fc4d (patch)
tree8e6aed52e85b1075526ed2fcce0c9da422d07f83 /.github
parent9efa088d462899c94afd06fbad25003c403a6cee (diff)
downloadpyecsca-6cbb129e1f7dfa4d4ca248f2f246781433a4fc4d.tar.gz
pyecsca-6cbb129e1f7dfa4d4ca248f2f246781433a4fc4d.tar.zst
pyecsca-6cbb129e1f7dfa4d4ca248f2f246781433a4fc4d.zip
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml2
-rw-r--r--.github/workflows/test.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 048772a..0d02c48 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
- pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, gmp, test, dev]"
+ pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, leia, gmp, test, dev]"
- name: Typecheck
run: |
make typecheck
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index b58efa2..42eb8ba 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -50,8 +50,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
- if [ $USE_GMP == 1 ]; then pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, gmp, test, dev]"; fi
- if [ $USE_GMP == 0 ]; then pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, test, dev]"; fi
+ if [ $USE_GMP == 1 ]; then pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, leia, gmp, test, dev]"; fi
+ if [ $USE_GMP == 0 ]; then pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, leia, test, dev]"; fi
- name: Test
run: |
make test