From 67b0d611b76ff67d040ddb7f2d376e49965d8101 Mon Sep 17 00:00:00 2001 From: Alex Brooke Date: Tue, 7 Jul 2020 00:20:46 -0400 Subject: [PATCH] Fix: apt and homebrew CI commands --- .github/workflows/ci.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b72fe42157..7b694d88b78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,7 @@ jobs: - name: prepare workspace run: mkdir build - name: install dependencies - uses: ryankurte/action-apt@v0.1.0 - with: - packages: "zlib1g-dev liblzo2-dev liblzma-dev libpng-dev libfreetype6-dev libfontconfig1-dev libicu-dev libsdl2-dev" + run: "sudo apt-get install -y zlib1g-dev liblzo2-dev liblzma-dev libpng-dev libfreetype6-dev libfontconfig1-dev libicu-dev libsdl2-dev" - name: cmake run: | pushd build @@ -42,13 +40,9 @@ jobs: - name: prepare workspace run: mkdir build - name: brew update - uses: artemnovichkov/action-homebrew@0.1.0 - with: - args: "update" + run: "brew update" - name: install dependencies - uses: artemnovichkov/action-homebrew@0.1.0 - with: - args: "install zlib lzo xz libpng freetype fontconfig icu4c sdl2" + run: "brew install zlib lzo xz libpng freetype fontconfig icu4c sdl2" - name: cmake run: | pushd build