Skip to content

Commit

Permalink
Run all build jobs for all OSes and versions, regardless of errors
Browse files Browse the repository at this point in the history
  • Loading branch information
g3force committed Jan 3, 2024
1 parent 5775a6f commit 51c9cab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ on:
push:
branches:
- master
- windows-github-actions
pull_request:
jobs:
build-linux:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
steps:
Expand All @@ -22,7 +23,9 @@ jobs:

build-macos:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ macos-11, macos-12, macos-13 ]
steps:
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ $ sudo pacman -S base-devel boost hicolor-icon-theme \
mesa ode protobuf qt5-base cmake git
```

#### Debian
#### Ubuntu / Debian

For Debian, or derivative
```
$ sudo apt install git build-essential cmake pkg-config qt5-default \
sudo apt install git build-essential cmake pkg-config qtbase5-dev \
libqt5opengl5-dev libgl1-mesa-dev libglu1-mesa-dev \
libprotobuf-dev protobuf-compiler libode-dev libboost-dev
```
Expand Down

0 comments on commit 51c9cab

Please sign in to comment.