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
10 changes: 8 additions & 2 deletions SPECS/runc/runc.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Summary: CLI tool for spawning and running containers per OCI spec.
Name: runc
# update "commit_hash" above when upgrading version
Version: 1.3.3
Release: 1%{?dist}
Release: 2%{?dist}
License: ASL 2.0
Vendor: Microsoft Corporation
Distribution: Azure Linux
Expand Down Expand Up @@ -31,7 +31,10 @@ export CGO_ENABLED=1
make %{?_smp_mflags} BUILDTAGS="seccomp" COMMIT="%{commit_hash}" man runc

%check
make %{?_smp_mflags} COMMIT="%{commit_hash}" localunittest
mount -t cgroup2 none /sys/fs/cgroup
trap 'umount -l /sys/fs/cgroup' EXIT
go test -tags "seccomp cgo" -timeout 3m -v \
$(go list ./... | grep -vE '/libcontainer/(integration|nsenter)$')

%install
make install DESTDIR=%{buildroot} PREFIX=%{_prefix} BINDIR=%{_bindir}
Expand All @@ -43,6 +46,9 @@ make install-man DESTDIR=%{buildroot} PREFIX=%{_prefix}
%{_mandir}/*

%changelog
* Fri May 15 2026 Sumit Jena <sumitjena@microsoft.com> - 1.3.3-2
- Fixed ptests failure

* Wed Nov 05 2025 Nan Liu <liunan@microsoft.com> - 1.3.3-1
- Upgrade to 1.3.3
- BR golang < 1.25
Expand Down
Loading