From 07c3b4feb8ea83938827facde72a96bbfe8eaff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20Kj=C3=B8nigsen?= Date: Wed, 23 Feb 2022 20:09:17 +0100 Subject: [PATCH 1/5] Update build.yml --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3679f45..9556118 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,7 @@ jobs: unix-build: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest] emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot] From f7f9eb2caa086b007460c7d3bb9f49711faef590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20Kj=C3=B8nigsen?= Date: Wed, 23 Feb 2022 20:14:13 +0100 Subject: [PATCH 2/5] Update build.yml Don't fail build on Emacs snapshot failures. --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9556118..c2980ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,16 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot] + experimental: [false] + include: + - emacs: 26.1 + - emacs: 26.2 + - emacs: 26.3 + - emacs: 27.1 + - emacs: 27.2 + - emacs: snapshot + experimental: true + continue-on-error: ${{ matrix.experimental }} steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it From beda3d6faa358f5a253dd541bdcdf440cb28fc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20Kj=C3=B8nigsen?= Date: Wed, 23 Feb 2022 20:19:09 +0100 Subject: [PATCH 3/5] Update build.yml --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2980ed..171a30f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] experimental: [false] + emacs: [""] include: - emacs: 26.1 - emacs: 26.2 From 58304672c90075bbadd2880b5d6fb0115be1fd91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20Kj=C3=B8nigsen?= Date: Wed, 23 Feb 2022 20:30:01 +0100 Subject: [PATCH 4/5] Update build.yml --- .github/workflows/build.yml | 50 +++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 27 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 171a30f..0e2837e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,13 +16,8 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] experimental: [false] - emacs: [""] + emacs: [26.1, 26.2, 26.3, 27.1, 27.2] include: - - emacs: 26.1 - - emacs: 26.2 - - emacs: 26.3 - - emacs: 27.1 - - emacs: 27.2 - emacs: snapshot experimental: true continue-on-error: ${{ matrix.experimental }} @@ -51,29 +46,30 @@ jobs: run: | emacs --version make test - windows-build: - runs-on: windows-latest - strategy: - matrix: - emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot] + + # windows-build: + # runs-on: windows-latest + # strategy: + # matrix: + # emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot] - steps: - - uses: actions/checkout@v2 + # steps: + # - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.6" - architecture: "x64" + # - uses: actions/setup-python@v2 + # with: + # python-version: "3.6" + # architecture: "x64" - - uses: jcs090218/setup-emacs-windows@master - with: - version: ${{ matrix.emacs }} + # - uses: jcs090218/setup-emacs-windows@master + # with: + # version: ${{ matrix.emacs }} - - uses: conao3/setup-cask@master - with: - version: 0.8.4 + # - uses: conao3/setup-cask@master + # with: + # version: 0.8.4 - - name: Run a multi-line script - run: | - emacs --version - make test + # - name: Run a multi-line script + # run: | + # emacs --version + # make test From 017a8200fa2ee596267019cc49fcdce9d131f311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20Kj=C3=B8nigsen?= Date: Wed, 23 Feb 2022 20:31:29 +0100 Subject: [PATCH 5/5] Update build.yml --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e2837e..ad9e871 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,10 @@ jobs: include: - emacs: snapshot experimental: true + os: ubuntu-latest + - emacs: snapshot + experimental: true + os: macos-latest continue-on-error: ${{ matrix.experimental }} steps: