From 6743de076f07e8ae155a3752cd339424a7878a5f Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 1 Feb 2021 23:56:42 +0100 Subject: [PATCH] CI: frustrated by weird Python failures now --- .github/workflows/ci-neon.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-neon.yml b/.github/workflows/ci-neon.yml index c06933715..91f79eb9f 100644 --- a/.github/workflows/ci-neon.yml +++ b/.github/workflows/ci-neon.yml @@ -68,19 +68,21 @@ jobs: mkdir -p $BUILDDIR test -f $SRCDIR/CMakeLists.txt || { echo "! Missing $SRCDIR/CMakeLists.txt" ; exit 1 ; } echo "::set-output name=message::"`git log -1 --abbrev-commit --pretty=oneline --no-decorate ${{ github.event.head_commit.id }}` - - name: "Calamares: cmake" - working-directory: ${{ env.BUILDDIR }} - run: cmake $CMAKE_ARGS $SRCDIR - - name: "Calamares: make" - working-directory: ${{ env.BUILDDIR }} - run: make -j2 VERBOSE=1 - - name: "Calamares: install" - working-directory: ${{ env.BUILDDIR }} - run: make install VERBOSE=1 +# - name: "Calamares: cmake" +# working-directory: ${{ env.BUILDDIR }} +# run: cmake $CMAKE_ARGS $SRCDIR +# - name: "Calamares: make" +# working-directory: ${{ env.BUILDDIR }} +# run: make -j2 VERBOSE=1 +# - name: "Calamares: install" +# working-directory: ${{ env.BUILDDIR }} +# run: make install VERBOSE=1 - name: "notify: ok" uses: rectalogic/notify-irc@v1 if: ${{ success() && github.repository == 'calamares/calamares' }} with: + server: chat.freenode.net + nickname: cala-notify channel: "#calamares" message: | ${{ github.workflow }} OK ${{ github.repository }} ${{ steps.pre_build.outputs.message }} @@ -88,6 +90,8 @@ jobs: uses: rectalogic/notify-irc@v1 if: ${{ failure() && github.repository == 'calamares/calamares' }} with: + server: chat.freenode.net + nickname: cala-notify channel: "#calamares" message: | ${{ github.workflow }} FAIL ${{ github.repository }} ${{ steps.pre_build.outputs.message }}