ci: Move CI related files into own directory

This commit is contained in:
Michael Vetter
2026-03-20 08:36:17 +01:00
parent 180ee651a5
commit 8548dfca96
9 changed files with 7 additions and 7 deletions

View File

@@ -23,8 +23,8 @@ jobs:
- uses: actions/checkout@v2
- name: Run tests
run: |
docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
docker run profanity ./ci-build.sh
docker build -f ci/Dockerfile.${{ matrix.flavor }} -t profanity .
docker run profanity ./ci/ci-build.sh
linux-meson:
runs-on: ubuntu-latest
@@ -40,8 +40,8 @@ jobs:
env:
OMEMO_BACKEND: libomemo-c
run: |
docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
docker run -e OMEMO_BACKEND profanity ./ci-meson-build.sh
docker build -f ci/Dockerfile.${{ matrix.flavor }} -t profanity .
docker run -e OMEMO_BACKEND profanity ./ci/ci-meson-build.sh
code-style:
runs-on: ubuntu-22.04