Skip to content

Commit

Permalink
fix Ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
lidaobing committed Dec 13, 2023
1 parent 5599f23 commit 7bee95d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
env:
CXX: ${{ matrix.compiler }}
- name: build
run: meson compile -C build
run: ninja -v -C build
- name: install
run: sudo meson install -C build
- name: test
Expand All @@ -68,7 +68,7 @@ jobs:
- name: meson
run: meson setup -D b_coverage=true build
- name: build
run: meson compile -C build
run: ninja -v -C build
- name: install
run: sudo meson install -C build
- name: test
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
# Produce a binary artifact and place it in the mounted volume
run: |
meson setup build
meson compile -C build
ninja -v -C build
meson install -C build
xvfb-run -a meson test -C build --verbose --no-stdsplit
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ brew install iptux
sudo apt-get install git libgoogle-glog-dev libgtk-3-dev libglib2.0-dev libjsoncpp-dev g++ meson libsigc++-2.0-dev
git clone git://github.com/iptux-src/iptux.git
cd iptux
meson setup build && meson compile -C build
meson setup build
meson compile -C build # or "ninja -C build" if meson version < 0.54
sudo meson install -C build
iptux
```
Expand Down

0 comments on commit 7bee95d

Please sign in to comment.