Skip to content
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
include:
- os: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
sudo apt-get update
Expand All @@ -45,7 +45,7 @@ jobs:
image: ${{ matrix.container }}
options: --user root
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
pacman -Syu --noconfirm
Expand All @@ -68,7 +68,7 @@ jobs:
container: [ "debian:12" ]
version: [ "11", "12" ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
apt-get update
Expand All @@ -90,7 +90,7 @@ jobs:
container: [ "debian:12" ]
version: [ "13", "14", "15", "16" ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
apt-get update
Expand All @@ -114,7 +114,7 @@ jobs:
- name: Install AmazonLinux deps needed specifically for GitHub action
if: startsWith(matrix.container, 'amazonlinux')
run: yum -y install tar xz gzip
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
yum -y install man gcc-c++
Expand All @@ -137,7 +137,7 @@ jobs:
- name: Install AmazonLinux deps needed specifically for GitHub action
if: startsWith(matrix.container, 'amazonlinux')
run: yum -y install tar xz gzip
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
yum -y install man clang
Expand All @@ -155,7 +155,7 @@ jobs:
container: [ "macOS-12" ]
version: [ "10", "11" ] # On 2023-02-11, version 9 was already broken: "g++-9: warning: '12.6' is not valid for 'mmacosx-version-min'"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
brew install cmake ninja
Expand All @@ -173,7 +173,7 @@ jobs:
matrix:
container: [ "macOS-12" ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Compiler
run: |
brew install cmake ninja
Expand All @@ -191,7 +191,7 @@ jobs:
container: [ "bookworm" ] # Has GCC 12
arch: [ "aarch64", "s390x", "ppc64le" ] # , "armv6", "armv7" -- 32 bits archs, currently not supported by ngs
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: uraimo/run-on-arch-action@v3
name: Run commands
id: runcmd
Expand Down
Loading