Merge pull request #522 from kiwix/libkiwix_ci_fix

Fixed CI after repository rename
This commit is contained in:
Kelson 2021-05-13 11:09:57 +02:00 committed by GitHub
commit 39b62c6108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -134,7 +134,7 @@ jobs:
if [[ "${{matrix.target}}" =~ android_.* ]]; then if [[ "${{matrix.target}}" =~ android_.* ]]; then
MESON_OPTION="$MESON_OPTION -Dandroid=true" MESON_OPTION="$MESON_OPTION -Dandroid=true"
fi fi
cd $HOME/kiwix-lib cd $HOME/libkiwix
meson . build ${MESON_OPTION} meson . build ${MESON_OPTION}
cd build cd build
ninja ninja
@ -145,7 +145,7 @@ jobs:
if: startsWith(matrix.target, 'native_') if: startsWith(matrix.target, 'native_')
shell: bash shell: bash
run: | run: |
cd $HOME/kiwix-lib/build cd $HOME/libkiwix/build
meson test --verbose meson test --verbose
ninja coverage ninja coverage
env: env:
@ -154,7 +154,7 @@ jobs:
- name: Publish coverage - name: Publish coverage
shell: bash shell: bash
run: | run: |
cd $HOME/kiwix-lib cd $HOME/libkiwix
curl https://codecov.io/bash -o codecov.sh curl https://codecov.io/bash -o codecov.sh
bash codecov.sh -n "${OS_NAME}_${{matrix.target}}" -Z bash codecov.sh -n "${OS_NAME}_${{matrix.target}}" -Z
rm codecov.sh rm codecov.sh