undo pkg_check #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu GTK | |
on: | |
- push | |
- pull_request | |
jobs: | |
build_by_meson: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Downloading dependencies 📥 | |
run: sudo apt-get install build-essential meson libgtksourceviewmm-3.0-dev libgtkmm-3.0-dev libtinyxml2-dev | |
- name: Configure 🔧 | |
run: meson _build -DTARGET_DEMO=GTK | |
- name: Compile 🎲 | |
run: ninja -C _build | |
- name: Compress build artifacts 📦 | |
run: | | |
pushd _build | |
tar -c * | zstd -o $GITHUB_WORKSPACE/artifacts.tar.zst | |
popd | |
- name: Upload build artifacts 📤 | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Build artifacts | |
path: artifacts.tar.zst | |
build_by_cmake: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
steps: | |
- name: Downloading Source Code 📥 | |
uses: actions/checkout@v2 | |
- name: Downloading dependencies 📥 | |
run: sudo apt-get install build-essential meson libgtksourceviewmm-3.0-dev libgtkmm-3.0-dev libtinyxml2-dev | |
- name: Configure 🔧 | |
run: | | |
cd ${{ github.workspace }} | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Release -G Ninja | |
- name: Compile 🎲 | |
run: | | |
cd ${{ github.workspace }} | |
cd build | |
ninja |