Skip to content

Commit

Permalink
Fix CI (cms-dev#1199)
Browse files Browse the repository at this point in the history
* Fix CI

* Use apt-get instead of apt

> WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  • Loading branch information
edomora97 authored and stefano-maggiolo committed Dec 21, 2021
1 parent d713424 commit 17d4758
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,23 @@ jobs:
python-version: 3.8

- name: Install dependencies
run: >-
sudo apt install -y
build-essential
php7.4-cli
haskell-platform
fp-compiler
python2.7
cppreference-doc-en-html
cgroup-lite
libcap-dev
python-dev
libpq-dev
libcups2-dev
libyaml-dev
rustc
mono-mcs
run: |
sudo apt-get update -y
sudo apt-get install -y \
build-essential \
php7.4-cli \
haskell-platform \
fp-compiler \
python2.7 \
cppreference-doc-en-html \
cgroup-lite \
libcap-dev \
python-dev \
libpq-dev \
libcups2-dev \
libyaml-dev \
rustc \
mono-mcs
- name: Install requirements
run: |
Expand Down

0 comments on commit 17d4758

Please sign in to comment.