-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` | Package | Update | Change | |---|---|---| | [PCRE2Project/pcre2](https://togithub.com/PCRE2Project/pcre2) | minor | `10.43` -> `10.44` | | [Perl/perl5](https://togithub.com/Perl/perl5) | minor | `5.38.2` -> `5.40.0` | | [curl/curl](https://togithub.com/curl/curl) | minor | `8_7_1` -> `8_8_0` | | [davea42/libdwarf-code](https://togithub.com/davea42/libdwarf-code) | minor | `0.9.2` -> `0.10.1` | | git://git.kernel.org/pub/scm/devel/pahole/pahole.git | minor | `1.26` -> `1.27` | | git://git.kernel.org/pub/scm/git/git.git | patch | `2.45.1` -> `2.45.2` | | git://git.kernel.org/pub/scm/libs/libcap/libcap.git | minor | `2.69` -> `2.70` | | git://git.savannah.gnu.org/automake.git | patch | `1.16.5` -> `1.16.92` | | git://git.savannah.gnu.org/findutils.git | minor | `4.9.0` -> `4.10.0` | | [libbpf/libbpf](https://togithub.com/libbpf/libbpf) | patch | `v1.4.2` -> `v1.4.3` | | [mesonbuild/meson](https://togithub.com/mesonbuild/meson) | patch | `1.4.0` -> `1.4.1` | | [protocolbuffers/protobuf-go](https://togithub.com/protocolbuffers/protobuf-go) | patch | `v1.34.1` -> `v1.34.2` | | [python/cpython](https://togithub.com/python/cpython) | patch | `3.12.3` -> `3.12.4` | | [siderolabs/bldr](https://togithub.com/siderolabs/bldr) | patch | `v0.3.0` -> `v0.3.1` | | [protocolbuffers/protobuf](https://togithub.com/protocolbuffers/protobuf) | major | `26.1` -> `27.2` | | [systemd/systemd](https://togithub.com/systemd/systemd) | major | `255` -> `256.1` | ``` Signed-off-by: Andrey Smirnov <[email protected]>
- Loading branch information
Showing
5 changed files
with
137 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2024-05-09T12:19:36Z by kres 1e986af. | ||
# Generated on 2024-07-02T11:42:51Z by kres 582671e. | ||
|
||
name: default | ||
concurrency: | ||
|
@@ -33,14 +33,39 @@ jobs: | |
labels: ${{ steps.retrieve-pr-labels.outputs.result }} | ||
services: | ||
buildkitd: | ||
image: moby/buildkit:v0.13.2 | ||
image: moby/buildkit:v0.14.1 | ||
options: --privileged | ||
ports: | ||
- 1234:1234 | ||
volumes: | ||
- /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit | ||
- /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml | ||
steps: | ||
- name: gather-system-info | ||
id: system-info | ||
uses: kenchan0130/[email protected] | ||
continue-on-error: true | ||
- name: print-system-info | ||
run: | | ||
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024)) | ||
OUTPUTS=( | ||
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}" | ||
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}" | ||
"Hostname: ${{ steps.system-info.outputs.hostname }}" | ||
"NodeName: ${NODE_NAME}" | ||
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}" | ||
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}" | ||
"Name: ${{ steps.system-info.outputs.name }}" | ||
"Platform: ${{ steps.system-info.outputs.platform }}" | ||
"Release: ${{ steps.system-info.outputs.release }}" | ||
"Total memory: ${MEMORY_GB} GB" | ||
) | ||
for OUTPUT in "${OUTPUTS[@]}";do | ||
echo "${OUTPUT}" | ||
done | ||
continue-on-error: true | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Unshallow | ||
|
@@ -103,14 +128,39 @@ jobs: | |
- default | ||
services: | ||
buildkitd: | ||
image: moby/buildkit:v0.13.2 | ||
image: moby/buildkit:v0.14.1 | ||
options: --privileged | ||
ports: | ||
- 1234:1234 | ||
volumes: | ||
- /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit | ||
- /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml | ||
steps: | ||
- name: gather-system-info | ||
id: system-info | ||
uses: kenchan0130/[email protected] | ||
continue-on-error: true | ||
- name: print-system-info | ||
run: | | ||
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024)) | ||
OUTPUTS=( | ||
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}" | ||
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}" | ||
"Hostname: ${{ steps.system-info.outputs.hostname }}" | ||
"NodeName: ${NODE_NAME}" | ||
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}" | ||
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}" | ||
"Name: ${{ steps.system-info.outputs.name }}" | ||
"Platform: ${{ steps.system-info.outputs.platform }}" | ||
"Release: ${{ steps.system-info.outputs.release }}" | ||
"Total memory: ${MEMORY_GB} GB" | ||
) | ||
for OUTPUT in "${OUTPUTS[@]}";do | ||
echo "${OUTPUT}" | ||
done | ||
continue-on-error: true | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Unshallow | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2024-05-09T12:19:36Z by kres 1e986af. | ||
# Generated on 2024-07-02T11:42:51Z by kres 582671e. | ||
|
||
name: weekly | ||
concurrency: | ||
|
@@ -16,14 +16,39 @@ jobs: | |
- pkgs | ||
services: | ||
buildkitd: | ||
image: moby/buildkit:v0.13.2 | ||
image: moby/buildkit:v0.14.1 | ||
options: --privileged | ||
ports: | ||
- 1234:1234 | ||
volumes: | ||
- /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit | ||
- /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml | ||
steps: | ||
- name: gather-system-info | ||
id: system-info | ||
uses: kenchan0130/[email protected] | ||
continue-on-error: true | ||
- name: print-system-info | ||
run: | | ||
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024)) | ||
OUTPUTS=( | ||
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}" | ||
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}" | ||
"Hostname: ${{ steps.system-info.outputs.hostname }}" | ||
"NodeName: ${NODE_NAME}" | ||
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}" | ||
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}" | ||
"Name: ${{ steps.system-info.outputs.name }}" | ||
"Platform: ${{ steps.system-info.outputs.platform }}" | ||
"Release: ${{ steps.system-info.outputs.release }}" | ||
"Total memory: ${MEMORY_GB} GB" | ||
) | ||
for OUTPUT in "${OUTPUTS[@]}";do | ||
echo "${OUTPUT}" | ||
done | ||
continue-on-error: true | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Unshallow | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.