Skip to content

Commit 44cfa62

Browse files
authored
Fix CI (#339)
Replacing Ubuntu 16.04 (which has Python 2.7 and 3.5, which are not supported by Certbot anymore) by Ubuntu 20.04. Also replacing venv3 → venv.
1 parent 8a79a25 commit 44cfa62

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: go
22

33
sudo: true
4-
dist: xenial
4+
dist: focal
55
addons:
66
hosts:
77
- example.letsencrypt.org
@@ -18,6 +18,7 @@ services:
1818
- docker
1919

2020
before_install:
21+
- sudo apt-get install python3-venv
2122
- git clone --single-branch --depth=1 -b master https://github.com/certbot/certbot
2223
- cd certbot
2324
- ./certbot-auto --os-packages-only -n

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ artifacts:
1717
install:
1818
- git clone --single-branch --depth=1 -b master https://github.com/certbot/certbot
1919
- cd certbot
20-
- python tools\venv3.py
21-
- venv3\Scripts\activate.bat
20+
- python tools\venv.py
21+
- venv\Scripts\activate.bat
2222
- cd ..
2323

2424
before_build:

0 commit comments

Comments
 (0)