From 0237daaddb2a41f7b538c5ad2cd4fed94cd6b7fd Mon Sep 17 00:00:00 2001 From: lebarsfa Date: Fri, 3 Oct 2025 22:11:43 +0200 Subject: [PATCH 1/3] Update workflows (problem with tags: '') --- .github/workflows/dockermatrix.yml | 4 ++-- .github/workflows/unixmatrix.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dockermatrix.yml b/.github/workflows/dockermatrix.yml index 4d5ef7d..c587e72 100644 --- a/.github/workflows/dockermatrix.yml +++ b/.github/workflows/dockermatrix.yml @@ -1,9 +1,9 @@ on: push: - branches: '**' + branches: ['**'] # branches: 'master' # branches: 'devel' - tags: '' # Restrict to blank tags + tags-ignore: ['**'] # Ignore all tag pushes pull_request: # branches: 'devel' diff --git a/.github/workflows/unixmatrix.yml b/.github/workflows/unixmatrix.yml index 55e5e8d..65d29cb 100644 --- a/.github/workflows/unixmatrix.yml +++ b/.github/workflows/unixmatrix.yml @@ -1,8 +1,8 @@ on: push: - branches: '**' + branches: ['**'] # branches: 'master' - tags: '' # Restrict to blank tags + tags-ignore: ['**'] # Ignore all tag pushes pull_request: jobs: From d1ceebb6c3033e38ac5f8dad1b9dd9a92507cdbd Mon Sep 17 00:00:00 2001 From: lebarsfa Date: Fri, 3 Oct 2025 22:22:42 +0200 Subject: [PATCH 2/3] macOS Ventura EOL --- .github/workflows/unixmatrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unixmatrix.yml b/.github/workflows/unixmatrix.yml index 65d29cb..c4ba406 100644 --- a/.github/workflows/unixmatrix.yml +++ b/.github/workflows/unixmatrix.yml @@ -38,7 +38,7 @@ jobs: # Current workaround is to use Intel app with Rosetta... # #- { os: macos-14, shell: bash, arch: arm64, bitness: 64, runtime: sonoma, desc: 'macOS Sonoma arm64' } - - { os: macos-13, shell: bash, arch: x86_64, bitness: 64, runtime: ventura, desc: 'macOS Ventura x86_64' } + - { os: macos-15-intel, shell: bash, arch: x86_64, bitness: 64, runtime: sonoma, desc: 'macOS Sonoma x86_64' } # Not clear whether it is more Sequoia or Sonoma, see https://github.com/actions/runner-images/issues/13045... name: ${{ matrix.cfg.desc }} steps: - uses: actions/checkout@v4 From 5d8bd527333d61a08bd82bbb8fa54a36da57be05 Mon Sep 17 00:00:00 2001 From: lebarsfa Date: Fri, 10 Oct 2025 00:09:24 +0200 Subject: [PATCH 3/3] Ubuntu 20.04 EOL --- .github/workflows/dockermatrix.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dockermatrix.yml b/.github/workflows/dockermatrix.yml index c587e72..3047fe6 100644 --- a/.github/workflows/dockermatrix.yml +++ b/.github/workflows/dockermatrix.yml @@ -22,7 +22,9 @@ jobs: # #- { img: 'lebarsfa/pi-64:focal-for-codac', shell: bash, arch: arm64, bitness: 64, runtime: focal, desc: 'Ubuntu 20.04 arm64' } #- { img: 'arm64v8/ubuntu:focal', shell: bash, arch: arm64, bitness: 64, runtime: focal, docker_flags: '--platform linux/arm64', desc: 'Ubuntu 20.04 arm64' } - - { img: 'amd64/ubuntu:focal', shell: bash, arch: amd64, bitness: 64, runtime: focal, docker_flags: '--platform linux/amd64', desc: 'Ubuntu 20.04 amd64' } + #- { img: 'amd64/ubuntu:focal', shell: bash, arch: amd64, bitness: 64, runtime: focal, docker_flags: '--platform linux/amd64', desc: 'Ubuntu 20.04 amd64' } + #- { img: 'arm64v8/ubuntu:jammy', shell: bash, arch: arm64, bitness: 64, runtime: jammy, docker_flags: '--platform linux/arm64', desc: 'Ubuntu 22.04 arm64' } + - { img: 'amd64/ubuntu:jammy', shell: bash, arch: amd64, bitness: 64, runtime: jammy, docker_flags: '--platform linux/amd64', desc: 'Ubuntu 22.04 amd64' } name: ${{ matrix.cfg.desc }} steps: - uses: actions/checkout@v4