Add Chrome installing action

This commit is contained in:
Iaroslav Postovalov 2020-10-14 23:43:16 +07:00
parent 3eb050d3d1
commit 3602bce133
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -13,7 +13,13 @@ jobs:
with:
java-version: 11
- name: Install libgsl-dev
run: sudo apt install libgsl-dev
run: sudo apt install -y libgsl-dev
- name: Install Chrome
run: |
sudo apt install -y libappindicator1 fonts-liberation
cd /temp
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome*.deb
- name: Cache gradle
uses: actions/cache@v2
with: