diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-19 17:17:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 17:17:30 +0100 |
commit | 71b7f05e42f93c3da590b6f7f55658a81b607c0e (patch) | |
tree | a80b6aef7bbd37799597d4328248010943240886 /.github | |
parent | 2d1cf137d7380a15673826bce00e71461fbc7446 (diff) | |
download | libquotient-71b7f05e42f93c3da590b6f7f55658a81b607c0e.tar.gz libquotient-71b7f05e42f93c3da590b6f7f55658a81b607c0e.zip |
Add continue-on-error for regenerated API files
The current upstream API definitions are expected to fail the test.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47e31d55..f22ea6d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: echo "CMAKE_ARGS=$CMAKE_ARGS -DMATRIX_DOC_PATH=$GITHUB_WORKSPACE/../matrix-doc \ -DGTAD_PATH=$GITHUB_WORKSPACE/../gtad/gtad" \ >>$GITHUB_ENV - echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN and API files regeneration" >>$GITHUB_ENV + echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN with API files regeneration" >>$GITHUB_ENV - name: Initialize CodeQL tools if: env.CODEQL_ANALYSIS @@ -154,6 +154,7 @@ jobs: ls ~/.local/$BIN_DIR/quotest - name: Run tests + continue-on-error: ${{ matrix.update-api != '' }} # the current upstream API definitions are expected to fail the test env: TEST_USER: ${{ secrets.TEST_USER }} TEST_PWD: ${{ secrets.TEST_PWD }} |