Skip to content

Commit

Permalink
Merge pull request #171 from chewing/modernize-1
Browse files Browse the repository at this point in the history
Modernize the build system
  • Loading branch information
kanru authored Feb 3, 2024
2 parents f823424 + 41a1738 commit 1de53bf
Show file tree
Hide file tree
Showing 25 changed files with 2,252 additions and 1,946 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: CI

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
merge_group:
types: [checks_requested]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install build dependencies
run: sudo apt install -y libgtk-3-dev libibus-1.0-dev libx11-dev libchewing3-dev ibus gettext xvfb

- name: Build
run: |
cmake --preset default
cmake --build --preset default --verbose
cmake --build --preset default -t install --verbose
- name: Test
run: |
xvfb-run -a ctest --test-dir out/build/default --output-on-failure --verbose
coverage:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install build dependencies
run: sudo apt install -y libgtk-3-dev libibus-1.0-dev libx11-dev libchewing3-dev ibus gettext xvfb

- name: Install llvm
run: |
sudo apt install -y llvm
rustup component add llvm-tools
- name: Setup grcov
run: |
curl -LO https://github.com/mozilla/grcov/releases/download/v0.8.19/grcov-x86_64-unknown-linux-gnu.tar.bz2
echo 098be4d60b8016913542d58456fea6e771890096d1bf86e7f83dac650ba4b58a grcov-x86_64-unknown-linux-gnu.tar.bz2 | sha256sum -c -
tar xf grcov-x86_64-unknown-linux-gnu.tar.bz2
- name: Build
run: |
cmake --preset c99-coverage
cmake --build --preset c99-coverage --verbose
- name: Test
run: |
xvfb-run -a ctest --test-dir out/build/c99-coverage --output-on-failure --verbose
./grcov . -s . -b . --keep-only 'src/*' --llvm -t lcov -o coverage.lcov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

# https://github.com/orgs/community/discussions/26822
results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Final Results
needs: [build]
steps:
- run: exit 1
# see https://stackoverflow.com/a/67532120/4907315
if: >-
${{
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
}}
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
*.sw[op]
*NO_PACK*
*~
.*
CMakeCache.txt
CPack*Config.cmake
CTestTestfile.cmake
Expand All @@ -49,8 +48,10 @@ ltmain.sh
missing
po/locale/
py-compile
src/ibus-chewing-engine*.[ch]
src/maker-dialog*.[ch]
stamp-h1
tags
test-bin/

/.cache
/out
/build
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "cmake-fedora"]
path = cmake-fedora
url = https://pagure.io/cmake-fedora.git
Loading

0 comments on commit 1de53bf

Please sign in to comment.