aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJ08nY2023-03-15 15:39:01 +0100
committerJ08nY2023-03-15 15:39:01 +0100
commit9be34dda26bde0d8218ee70379e0cc00aeff32ce (patch)
treee8c6f2e0023fb4f03d1d5ec688d73fa5e6242cf1
parent7f31b31ea6c43466c857a6219ab0541bba94296e (diff)
downloadpyecsca-9be34dda26bde0d8218ee70379e0cc00aeff32ce.tar.gz
pyecsca-9be34dda26bde0d8218ee70379e0cc00aeff32ce.tar.zst
pyecsca-9be34dda26bde0d8218ee70379e0cc00aeff32ce.zip
Remove Travis.
-rw-r--r--.travis.yml64
1 files changed, 0 insertions, 64 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index f57f665..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-os: linux
-language: python
-dist: focal
-
-addons:
- apt:
- sources:
- - sourceline: "deb https://labs.picotech.com/debian/ picoscope main"
- key_url: "https://labs.picotech.com/debian/dists/picoscope/Release.gpg.key"
- packages:
- - libps4000
- - libps5000
- - libps6000
- - swig
- - gcc
- - libpcsclite-dev
- - libgmp-dev
- - libmpfr-dev
- - libmpc-dev
- - llvm-10
- - libllvm10
- - llvm-10-dev
-
-jobs:
- include:
- - env:
- - USE_GMP=1
- - LLVM_CONFIG=/usr/bin/llvm-config-10
- python: "3.9"
- - env:
- - USE_GMP=0
- - LLVM_CONFIG=/usr/bin/llvm-config-10
- python: "3.9"
- - env:
- - USE_GMP=1
- - LLVM_CONFIG=/usr/bin/llvm-config-10
- python: "3.8"
- - env:
- - USE_GMP=0
- - LLVM_CONFIG=/usr/bin/llvm-config-10
- python: "3.8"
-
-before_install:
- - git clone https://github.com/colinoflynn/pico-python
- - cd pico-python
- - python setup.py install
- - cd ..
- - git clone https://github.com/picotech/picosdk-python-wrappers
- - cd picosdk-python-wrappers
- - python setup.py install
- - cd ..
-
-install:
- - pip install codecov
- - 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
-
-script:
- - make -i typecheck
- - make -i codestyle
- - make test
-
-after_success:
- - codecov