From 84cc9d4daee91be87a7d95d7bd9a5b7e97b71b80 Mon Sep 17 00:00:00 2001 From: Mattt Date: Mon, 14 Dec 2020 10:17:00 -0800 Subject: [PATCH] Install libgit2 using apt-get --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4205ab..ff9d960 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,12 +45,6 @@ jobs: - name: Install libgit2 run: | apt-get -qq update - apt-get install -y curl unzip cmake libssl-dev libssh2-1-dev python - curl -L -o libgit2.zip https://github.com/libgit2/libgit2/releases/download/v1.0.1/libgit2-1.0.1.zip - unzip -q libgit2.zip - cd libgit2-1.0.1 - ls - cmake . -DCMAKE_INSTALL_PREFIX=/usr - cmake --build . --target install + apt-get install -y libgit2 - name: Build and Test run: swift test --enable-test-discovery