diff --git a/.github/workflows/end-to-end-test.yml b/.github/workflows/end-to-end-test.yml index 107cb672..648bcce0 100644 --- a/.github/workflows/end-to-end-test.yml +++ b/.github/workflows/end-to-end-test.yml @@ -22,16 +22,17 @@ jobs: sudo apt update sudo apt install wget unzip flake8 pip3 install psutil + # Install docker, see See https://docs.docker.com/engine/install/ubuntu/ + sudo apt install -y apt-transport-https ca-certificates curl software-properties-common + sudo apt remove docker docker-engine docker.io containerd runc + curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - + sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" + sudo apt update + sudo apt-cache policy docker-ce + sudo apt install docker-ce containerd.io + # docker pull adfreiburg/qlever docker run adfreiburg/qlever --help | head - # Install docker, see See https://docs.docker.com/engine/install/ubuntu/ - # sudo apt install -y apt-transport-https ca-certificates curl software-properties-common - # sudo apt remove docker docker-engine docker.io containerd runc - # curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - # sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" - # sudo apt update - # sudo apt-cache policy docker-ce - # sudo apt install docker-ce containerd.io - name: Format and compile check run: |