Skip to content

Commit 571ae74

Browse files
authored
Merge pull request #1219 from diffblue/spot-ci
CI: workaround for installation failure of spot
2 parents 5f2c37e + ab666b8 commit 571ae74

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,12 @@ jobs:
175175
DEBIAN_FRONTEND: noninteractive
176176
run: |
177177
# spot
178-
wget -q -O - https://www.lrde.epita.fr/repo/debian.gpg | sudo apt-key add -
179-
sudo sh -c 'echo "deb http://www.lrde.epita.fr/repo/debian/ stable/" >> /etc/apt/sources.list'
180-
sudo apt-get update
181-
sudo apt-get install spot
178+
SPOT_VERSION=2.14.1
179+
wget https://www.lre.epita.fr/repo/debian/stable/libbddx0_${SPOT_VERSION}.0-1_amd64.deb
180+
wget https://www.lre.epita.fr/repo/debian/stable/libspotgen0_${SPOT_VERSION}.0-1_amd64.deb
181+
wget https://www.lre.epita.fr/repo/debian/stable/libspot0_${SPOT_VERSION}.0-1_amd64.deb
182+
wget https://www.lre.epita.fr/repo/debian/stable/spot_${SPOT_VERSION}.0-1_amd64.deb
183+
sudo dpkg -i libbddx0_${SPOT_VERSION}.0-1_amd64.deb libspotgen0_${SPOT_VERSION}.0-1_amd64.deb libspot0_${SPOT_VERSION}.0-1_amd64.deb spot_${SPOT_VERSION}.0-1_amd64.deb
182184
- name: Confirm ltl2tgba is available and log the version installed
183185
run: ltl2tgba --version
184186
- name: Get the ebmc binary

0 commit comments

Comments
 (0)