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
2 changes: 1 addition & 1 deletion .github/workflows/mkosi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
runner: ubuntu-24.04-arm

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/checkout@v5
with:
submodules: recursive
- uses: systemd/mkosi@main
Expand Down
65 changes: 46 additions & 19 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,61 +22,66 @@ jobs:
efiarch: aa64
gccarch: aarch64
makearch: aarch64
distro: f41
distro: f45
- arch: amd64
efiarch: aa64
gccarch: aarch64
makearch: aarch64
distro: f40
distro: f44
- arch: amd64
efiarch: aa64
gccarch: aarch64
makearch: aarch64
distro: f43
- arch: amd64
efiarch: arm
gccarch: arm
makearch: arm
distro: f41
distro: f45
- arch: amd64
efiarch: arm
gccarch: arm
makearch: arm
distro: f40
distro: f44
- arch: amd64
efiarch: arm
gccarch: arm
makearch: arm
distro: f39
distro: f43
- arch: amd64
efiarch: x64
gccarch: x86_64
makearch: x86_64
distro: f41
distro: f45
- arch: amd64
efiarch: x64
gccarch: x86_64
makearch: x86_64
distro: f40
distro: f44
- arch: amd64
efiarch: x64
gccarch: x86_64
makearch: x86_64
distro: f39
distro: f43
- arch: amd64
efiarch: ia32
gccarch: x86_64
makearch: ia32
distro: f41
distro: f45
- arch: amd64
efiarch: ia32
gccarch: x86_64
makearch: ia32
distro: f40
distro: f44
- arch: amd64
efiarch: ia32
gccarch: x86_64
makearch: ia32
distro: f39
distro: f43

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
Expand Down Expand Up @@ -117,20 +122,25 @@ jobs:
name: ${{ matrix.distro }} ${{ matrix.efiarch }} build

strategy:
fail-fast: false
matrix:
include:
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f41
distro: f45
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f40
distro: f44
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f39
distro: f43
- arch: amd64
efiarch: x64
makearch: x86_64
distro: centos10
- arch: amd64
efiarch: x64
makearch: x86_64
Expand All @@ -142,15 +152,23 @@ jobs:
- arch: amd64
efiarch: ia32
makearch: ia32
distro: f39
distro: f45
- arch: amd64
efiarch: ia32
makearch: ia32
distro: f44
- arch: amd64
efiarch: ia32
makearch: ia32
distro: f43
- arch: amd64
efiarch: ia32
makearch: ia32
distro: centos8

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
Expand Down Expand Up @@ -189,16 +207,25 @@ jobs:
name: ${{ matrix.distro }} ${{ matrix.efiarch }} build compile_commands.json

strategy:
fail-fast: false
matrix:
include:
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f41
distro: f45
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f44
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f43

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
3 changes: 3 additions & 0 deletions lib/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
#define strncmp shim_strncmp
#define strncasecmp shim_strncasecmp
#define strcasecmp shim_strcasecmp
#ifdef strrchr
#undef strrchr
#endif
#define strrchr shim_strrchr
#define strlen shim_strlen
#define strnlen shim_strnlen
Expand Down