aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJ08nY2023-10-05 16:25:29 +0200
committerJ08nY2023-10-05 16:25:29 +0200
commit5ebdb255d4b331adbd8784f1fb24ff2f5728f641 (patch)
treee7a511266dae7a27a1d4e5362e1813b959b30224
parent4381ab42124180b5b6b5fcfad152c98eb276c772 (diff)
downloadpyecsca-codegen-5ebdb255d4b331adbd8784f1fb24ff2f5728f641.tar.gz
pyecsca-codegen-5ebdb255d4b331adbd8784f1fb24ff2f5728f641.tar.zst
pyecsca-codegen-5ebdb255d4b331adbd8784f1fb24ff2f5728f641.zip
Use ubuntu-latest.
-rw-r--r--.github/workflows/test.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a8fc8b9..df5e96d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -3,12 +3,12 @@ name: Test
on: [push, pull_request]
env:
- LLVM_CONFIG: /usr/bin/llvm-config-10
- OTHER_PACKAGES: swig gcc-10 libpcsclite-dev llvm-10 libllvm10 llvm-10-dev gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi libnewlib-nano-arm-none-eabi
+ LLVM_CONFIG: /usr/bin/llvm-config-14
+ OTHER_PACKAGES: swig libpcsclite-dev llvm-14 libllvm14 llvm-14-dev gcc gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi libnewlib-nano-arm-none-eabi
jobs:
test:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
@@ -33,7 +33,6 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y $OTHER_PACKAGES
- sudo update-alternatives --set gcc /usr/bin/gcc-10
- name: Build libtommath
run: |
cd ext && make host stm32f3 && cd ..