Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fedora versions for CI workflows #8

Merged
merged 3 commits into from
Jan 17, 2024
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
42 changes: 25 additions & 17 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,57 +22,57 @@ jobs:
efiarch: aa64
gccarch: aarch64
makearch: aarch64
distro: f36
distro: f39
- arch: amd64
efiarch: aa64
gccarch: aarch64
makearch: aarch64
distro: f35
distro: f38
- arch: amd64
efiarch: arm
gccarch: arm
makearch: arm
distro: f36
distro: f39
- arch: amd64
efiarch: arm
gccarch: arm
makearch: arm
distro: f35
distro: f38
- arch: amd64
efiarch: arm
gccarch: arm
makearch: arm
distro: f34
distro: f37
- arch: amd64
efiarch: x64
gccarch: x86_64
makearch: x86_64
distro: f36
distro: f39
- arch: amd64
efiarch: x64
gccarch: x86_64
makearch: x86_64
distro: f35
distro: f38
- arch: amd64
efiarch: x64
gccarch: x86_64
makearch: x86_64
distro: f34
distro: f37
- arch: amd64
efiarch: ia32
gccarch: x86_64
makearch: ia32
distro: f36
distro: f39
- arch: amd64
efiarch: ia32
gccarch: x86_64
makearch: ia32
distro: f35
distro: f38
- arch: amd64
efiarch: ia32
gccarch: x86_64
makearch: ia32
distro: f34
distro: f37

steps:
- name: Checkout
Expand All @@ -82,6 +82,10 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: recursive
- name: Work around github/git ownership weirdness
id: ignore-directory-ownership
run: |
git config --global --add safe.directory /__w/certwrapper/certwrapper
- name: Update submodules on ${{ matrix.distro }} for ${{ matrix.efiarch }}
id: update-submodules
run: |
Expand Down Expand Up @@ -118,31 +122,31 @@ jobs:
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f36
distro: f39
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f35
distro: f38
- arch: amd64
efiarch: x64
makearch: x86_64
distro: f34
distro: f37
- arch: amd64
efiarch: x64
makearch: x86_64
distro: centos9
- arch: amd64
efiarch: ia32
makearch: ia32
distro: f36
distro: f39
- arch: amd64
efiarch: ia32
makearch: ia32
distro: f35
distro: f38
- arch: amd64
efiarch: ia32
makearch: ia32
distro: f34
distro: f37

steps:
- name: Checkout
Expand All @@ -152,6 +156,10 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: recursive
- name: Work around github/git ownership weirdness
id: ignore-directory-ownership
run: |
git config --global --add safe.directory /__w/certwrapper/certwrapper
- name: Update submodules on ${{ matrix.distro }} for ${{ matrix.efiarch }}
id: update-submodules
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BUILDFLAGS := $(CFLAGS) -fPIC -Werror -Wall -Wextra -fshort-wchar \
-I$(GNUEFIDIR)/inc/$(ARCH) \
-I$(GNUEFIDIR)/inc/protocol
CCLDFLAGS ?= -nostdlib -fPIC -Wl,--warn-common \
-Wl,--no-undefined -Wl,--fatal-warnings \
-Wl,--no-undefined \
-Wl,-shared -Wl,-Bsymbolic -L$(LIBDIR) -L$(GNUEFIDIR) \
-Wl,--build-id=sha1 -Wl,--hash-style=sysv
LD = $(CROSS_COMPILE)ld
Expand Down
Loading