aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJ08nY2024-05-30 14:04:44 +0200
committerJ08nY2024-05-30 14:04:44 +0200
commitcfc152a88e2e908b478cf96d39881f0f2f9a7684 (patch)
tree9d31bea536094692f9d95b4fec610f6da4d92c77 /.github/workflows
parent97fe36ca68a6d42967dd396aa721e5a42a2451df (diff)
downloadpyecsca-cfc152a88e2e908b478cf96d39881f0f2f9a7684.tar.gz
pyecsca-cfc152a88e2e908b478cf96d39881f0f2f9a7684.tar.zst
pyecsca-cfc152a88e2e908b478cf96d39881f0f2f9a7684.zip
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/lint.yml4
-rw-r--r--.github/workflows/perf.yml4
-rw-r--r--.github/workflows/test.yml4
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 399752a..179550c 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -35,11 +35,11 @@ jobs:
sudo apt-get install -y $PS_PACKAGES $OTHER_PACKAGES $GMP_PACKAGES
- name: Install picoscope bindings
run: |
- git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd ..
+ python -m pip install -U pip setuptools wheel
+ git clone https://github.com/J08nY/pico-python && cd pico-python && pip install . && cd ..
git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd ..
- name: Install dependencies
run: |
- python -m pip install -U pip setuptools wheel
pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, gmp, test, dev]"
- name: Typecheck
run: |
diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml
index 78b529d..e7dee10 100644
--- a/.github/workflows/perf.yml
+++ b/.github/workflows/perf.yml
@@ -45,11 +45,11 @@ jobs:
if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi
- name: Install picoscope bindings
run: |
- git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd ..
+ python -m pip install -U pip setuptools wheel
+ git clone https://github.com/J08nY/pico-python && cd pico-python && pip install . && cd ..
git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd ..
- 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, pari, gmp, test, dev]"; fi
if [ $USE_GMP == 0 ]; then pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, pari, test, dev]"; fi
- name: Perf
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6e71bb9..72f3673 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -45,11 +45,11 @@ jobs:
if [ $USE_GMP == 1 ]; then sudo apt-get install -y $GMP_PACKAGES; fi
- name: Install picoscope bindings
run: |
- git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd ..
+ python -m pip install -U pip setuptools wheel
+ git clone https://github.com/J08nY/pico-python && cd pico-python && pip install . && cd ..
git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd ..
- 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, pari, gmp, test, dev]"; fi
if [ $USE_GMP == 0 ]; then pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, pari, test, dev]"; fi
- name: Test