Skip to content

Commit 61841bc

Browse files
authored
Merge pull request #3177 from SUSE/for-deploy-6
🤖: Update build recipes for SP6
2 parents e2478af + 00458e4 commit 61841bc

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

.github/workflows/changelog_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container: registry.opensuse.org/opensuse/bci/bci-ci:latest
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
ref: main
2020
fetch-depth: 0

.github/workflows/find-missing-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
# we need all branches for the build checks
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
ref: main

sle15-kernel-module-devel-image/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The image can be used to launch a container and build a kernel
1616
module. The following example below shows how to do this for the DRBD kernel module:
1717
```ShellSession
1818
$ podman run --rm -it --name drbd-build registry.suse.com/bci/bci-sle15-kernel-module-devel:15.6
19-
# zypper -n in coccinelle tar
19+
# zypper -n install coccinelle tar
2020
# curl -Lsf -o - https://pkg.linbit.com/downloads/drbd/9/drbd-9.2.11.tar.gz | tar xzf -
2121
# cd drbd-9.2.11/
2222
# make -C drbd all KDIR=/usr/src/linux-obj/$(uname -m)/default
@@ -37,7 +37,7 @@ a `Dockerfile`:
3737
FROM registry.suse.com/bci/bci-sle15-kernel-module-devel:15.6
3838
ENV DRBD_VERSION=9.2.11
3939
WORKDIR /src/
40-
RUN zypper -n in coccinelle tar
40+
RUN zypper -n install coccinelle tar
4141

4242
RUN set -euxo pipefail; \
4343
curl -Lsf -o - https://pkg.linbit.com/downloads/drbd/9/drbd-${DRBD_VERSION}.tar.gz | tar xzf - ; \

sle15-kernel-module-devel-image/sle15-kernel-module-devel-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Fri Nov 21 23:05:34 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- use long form commands
5+
16
-------------------------------------------------------------------
27
Thu Nov 6 08:21:01 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

sles15-image/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To build a custom image using a `Containerfile` that includes the
2929
FROM registry.suse.com/bci/bci-base:15.6
3030
RUN set -euo pipefail; \
3131
zypper -n ref; \
32-
zypper -n in skopeo; \
32+
zypper -n install skopeo; \
3333
zypper -n clean -a ; \
3434
rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
3535
```
@@ -43,7 +43,7 @@ The image can also be used interactively to create a container with skopeo
4343
installed in it:
4444
```ShellSession
4545
$ podman run -ti --rm registry.suse.com/bci/bci-base:15.6
46-
# zypper -n in skopeo
46+
# zypper -n install skopeo
4747
...
4848
# skopeo inspect -f "{{ .Name }}" docker://registry.suse.com/bci/bci-base:15.6
4949
registry.suse.com/bci/bci-base

sles15-image/sles15-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Fri Nov 21 23:05:34 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- use long form commands
5+
16
-------------------------------------------------------------------
27
Thu Nov 6 08:21:01 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

0 commit comments

Comments
 (0)