Skip to content

Commit

Permalink
FMU linux specific apt-get stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ndim committed Nov 11, 2022
1 parent b432ac9 commit 2fe442e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
name: '${{ matrix.os }} ${{ matrix.sys }}'

strategy:
fail-fast: true
# FIXME: use true eventually
fail-fast: false
matrix:
include:
- {os: ubuntu-latest, shell: bash}
Expand Down Expand Up @@ -91,13 +92,16 @@ jobs:
if: runner.os == 'Windows'
run: echo CXX="no" >> $GITHUB_ENV

- name: 'Update software database'
- name: 'Update software database (Linux)'
if: runner.os == 'Linux'
run: sudo apt-get update

- name: 'Work around apt-get 3rd party repo libgd-dev dependency'
- name: 'Work around apt-get 3rd party repo libgd-dev dependency (Linux/Ubuntu/Github)'
if: runner.os == 'Linux'
run: sudo apt-get remove nginx libgd3

- name: 'Install build requirements'
- name: 'Install build requirements (Linux)'
if: runner.os == 'Linux'
run: sudo apt-get install -y autopoint gettext libusb-1.0-0-dev libcurl4-openssl-dev libgd-dev

- name: 'OS specific build flags'
Expand Down

0 comments on commit 2fe442e

Please sign in to comment.