From 0fe1d1e9a9805e1f0dc71414f4989afe1b2f1b31 Mon Sep 17 00:00:00 2001 From: Kirill Isakov Date: Fri, 22 Apr 2022 10:08:04 +0600 Subject: [PATCH] CI: ignore package job failures --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9b39eb2..209a558c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -192,6 +192,7 @@ jobs: - name: Build package run: sh .ci/package/build.sh if: github.ref == 'refs/heads/1.1' || startsWith(github.ref, 'refs/tags/release-') + continue-on-error: true - name: Upload package uses: actions/upload-artifact@v2 @@ -200,10 +201,12 @@ jobs: path: | *.deb ~/rpmbuild/RPMS/*/*.rpm + continue-on-error: true pkg-publish: if: always() && (github.ref == 'refs/heads/1.1' || startsWith(github.ref, 'refs/tags/release-')) runs-on: ubuntu-latest + continue-on-error: true needs: - linux - mingw @@ -302,12 +305,14 @@ jobs: shell: msys2 {0} run: sh .ci/package/build.sh if: github.ref == 'refs/heads/1.1' || startsWith(github.ref, 'refs/tags/release-') + continue-on-error: true - name: Upload package uses: actions/upload-artifact@v2 with: name: pkg-windows path: .ci/package/win/tinc-*.exe + continue-on-error: true - name: Run tests without legacy protocol shell: msys2 {0} -- 2.20.1