Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate to focal (fixes #821) #837

Closed
wants to merge 19 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sudo: required
dist: bionic
dist: focal

language: go
go:
Expand All @@ -8,18 +8,21 @@ go:
services:
- docker

before_install:
- sudo add-apt-repository "deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ focal universe"
- sudo apt-get update
- sudo apt-get install qemu-user-static g++-arm-linux-gnueabihf
before_install:
- snap list
- sudo snap remove google-cloud-sdk lxd snapcraft
- sudo snap remove core18
- sudo snap remove snapd
- sudo apt purge snapd

addons:
apt:
packages:
- kpartx
- qemu-user-static
- g++-arm-linux-gnueabihf
- aria2
- tree
- python-requests
- python3-requests

script: mkdir images && sudo PATH=./node_modules/.bin:$PATH ./builder --noninteractive

Expand Down