Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/dockermatrix.yml
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unixmatrix.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
on:
push:
branches: '**'
branches: ['**']
# branches: 'master'
tags: '' # Restrict to blank tags
tags-ignore: ['**'] # Ignore all tag pushes
pull_request:

jobs:
Expand Down Expand Up @@ -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
Expand Down