CI: frustrated by weird Python failures now

This commit is contained in:
Adriaan de Groot 2021-02-01 23:56:42 +01:00
parent 73ab41c572
commit 6743de076f

View File

@ -68,19 +68,21 @@ jobs:
mkdir -p $BUILDDIR mkdir -p $BUILDDIR
test -f $SRCDIR/CMakeLists.txt || { echo "! Missing $SRCDIR/CMakeLists.txt" ; exit 1 ; } 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 }}` echo "::set-output name=message::"`git log -1 --abbrev-commit --pretty=oneline --no-decorate ${{ github.event.head_commit.id }}`
- name: "Calamares: cmake" # - name: "Calamares: cmake"
working-directory: ${{ env.BUILDDIR }} # working-directory: ${{ env.BUILDDIR }}
run: cmake $CMAKE_ARGS $SRCDIR # run: cmake $CMAKE_ARGS $SRCDIR
- name: "Calamares: make" # - name: "Calamares: make"
working-directory: ${{ env.BUILDDIR }} # working-directory: ${{ env.BUILDDIR }}
run: make -j2 VERBOSE=1 # run: make -j2 VERBOSE=1
- name: "Calamares: install" # - name: "Calamares: install"
working-directory: ${{ env.BUILDDIR }} # working-directory: ${{ env.BUILDDIR }}
run: make install VERBOSE=1 # run: make install VERBOSE=1
- name: "notify: ok" - name: "notify: ok"
uses: rectalogic/notify-irc@v1 uses: rectalogic/notify-irc@v1
if: ${{ success() && github.repository == 'calamares/calamares' }} if: ${{ success() && github.repository == 'calamares/calamares' }}
with: with:
server: chat.freenode.net
nickname: cala-notify
channel: "#calamares" channel: "#calamares"
message: | message: |
${{ github.workflow }} OK ${{ github.repository }} ${{ steps.pre_build.outputs.message }} ${{ github.workflow }} OK ${{ github.repository }} ${{ steps.pre_build.outputs.message }}
@ -88,6 +90,8 @@ jobs:
uses: rectalogic/notify-irc@v1 uses: rectalogic/notify-irc@v1
if: ${{ failure() && github.repository == 'calamares/calamares' }} if: ${{ failure() && github.repository == 'calamares/calamares' }}
with: with:
server: chat.freenode.net
nickname: cala-notify
channel: "#calamares" channel: "#calamares"
message: | message: |
${{ github.workflow }} FAIL ${{ github.repository }} ${{ steps.pre_build.outputs.message }} ${{ github.workflow }} FAIL ${{ github.repository }} ${{ steps.pre_build.outputs.message }}