Skip to content

Commit

Permalink
Makefile: Turn off seccomp for build-in-podman
Browse files Browse the repository at this point in the history
See containers/podman#21012 for the full
background. Basically, running build-in-podman as part of the github
workflow doesn't work when using Fedora 40 or later because of the new
fchmodat2 syscall.

Disable seccomp until this works again.
  • Loading branch information
bcl committed Feb 12, 2024
1 parent 86e0185 commit 4491137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ scratch-rpm: $(RPM_SPECFILE) archive
$(RPM_SPECFILE)

build-in-podman: archive
podman build -t weldr-client:$(VERSION) -f Containerfile.test .
podman build --security-opt seccomp=unconfined -t weldr-client:$(VERSION) -f Containerfile.test .

update-mods:
go get -u ./...
Expand Down

0 comments on commit 4491137

Please sign in to comment.