From a124d1f0ebdb0f8ab85fa90ba2f768cdd21c918f Mon Sep 17 00:00:00 2001 From: joe-conigliaro Date: Wed, 25 Sep 2019 22:41:34 +1000 Subject: [PATCH] CI: apt update --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8264ddb1c..fb65e979a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: with: node-version: 12.x - name: Install dependencies - run: sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev + run: sudo apt-get update; sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev - name: Build v run: make && ./v -o v compiler - name: Test v->c @@ -45,7 +45,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install dependencies - run: sudo apt-get install --quiet -y tcc libglfw3 libglfw3-dev libfreetype6-dev libssl-dev + run: sudo apt-get update; sudo apt-get install --quiet -y tcc libglfw3 libglfw3-dev libfreetype6-dev libssl-dev - name: Build v run: make && ./v -o v compiler - name: Test v->c with tcc