Set default database to sqlite #311
This file contains hidden or 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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
VERBOSE: 1 | |
jobs: | |
build-test-debian-trixie: | |
name: Test on Debian trixie | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/pwmt/github-actions-debian:trixie | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Build and test | |
run: | | |
mkdir build | |
cd build | |
meson .. | |
ninja --verbose | |
ninja test --verbose | |
- name: Build and test (features disabled) | |
run: | | |
mkdir build-nofeatures | |
cd build-nofeatures | |
meson -Dsynctex=disabled -Dseccomp=disabled -Dlandlock=disabled .. | |
ninja --verbose | |
ninja test --verbose | |
build-test-debian-ofrky: | |
name: Test on Debian forky | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/pwmt/github-actions-debian:forky | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Build and test | |
run: | | |
mkdir build | |
cd build | |
meson .. | |
ninja --verbose | |
ninja test --verbose | |
- name: Build and test (features disabled) | |
run: | | |
mkdir build-nofeatures | |
cd build-nofeatures | |
meson -Dsynctex=disabled -Dseccomp=disabled -Dlandlock=disabled .. | |
ninja --verbose | |
ninja test --verbose | |
build-test-ubuntu-noble: | |
name: Test on Ubuntu noble | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/pwmt/github-actions-ubuntu:noble | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Build and test | |
run: | | |
mkdir build | |
cd build | |
meson .. | |
ninja --verbose | |
ninja test --verbose | |
- name: Build and test (features disabled) | |
run: | | |
mkdir build-nofeatures | |
cd build-nofeatures | |
meson -Dsynctex=disabled -Dseccomp=disabled -Dlandlock=disabled .. | |
ninja --verbose | |
ninja test --verbose | |
build-test-archlinux: | |
name: Test on Archlinux | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/pwmt/github-actions-archlinux:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Build and test | |
run: | | |
mkdir build | |
cd build | |
meson .. | |
ninja --verbose | |
ninja test --verbose | |
- name: Build and test (features disabled) | |
run: | | |
mkdir build-nofeatures | |
cd build-nofeatures | |
meson -Dsynctex=disabled -Dseccomp=disabled -Dlandlock=disabled .. | |
ninja --verbose | |
ninja test --verbose |