Skip to content

Commit

Permalink
Add clinfo
Browse files Browse the repository at this point in the history
Add CI for images
  • Loading branch information
tom91136 committed Oct 6, 2024
1 parent 3c6ad41 commit 143e814
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
44 changes: 43 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,49 @@ name: CI
on: [push]

jobs:
build:
test-image:
runs-on: ubuntu-24.04
strategy:
matrix:
image:
- cos.plain.x86_64.warewulf.tar
- cos.lt.x86_64.warewulf.tar
- cos.ml.x86_64.warewulf.tar

- cos.plain.aarch64.warewulf.tar
- cos.lt.aarch64.warewulf.tar
- cos.ml.aarch64.warewulf.tar

- cos.plain_cuda.x86_64.warewulf.tar
- cos.ml_cuda.x86_64.warewulf.tar
- cos.lt_cuda.x86_64.warewulf.tar

- cos.plain_cuda.aarch64.warewulf.tar
- cos.ml_cuda.aarch64.warewulf.tar
- cos.lt_cuda.aarch64.warewulf.tar

- cos.plain_rocm.x86_64.warewulf.tar
- cos.ml_rocm.x86_64.warewulf.tar
- cos.lt_rocm.x86_64.warewulf.tar

- cos.el8.aarch64.warewulf.tar

steps:
- name: Checkout
uses: actions/checkout@v4
if: always()

- name: Build image
working-directory: images
run: make ${{ matrix.image }}
if: always()

- name: Image stats
working-directory: images
run: tree --du -h
if: always()

test-deploy:
runs-on: ubuntu-24.04
steps:
- { name: Stats, run: df -H && sudo fstrim -av, if: always() }
Expand Down
2 changes: 1 addition & 1 deletion images/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ PACKAGES = micro \
java-17-openjdk-headless bash-completion git cmake wget curl rclone rsync \
ncurses-compat-libs htop lsof net-tools traceroute tcpdump iproute ethtool \
emacs-nox vim nano tree moreutils parallel tmux screen file which words ripgrep \
usbutils pciutils lm_sensors hwloc numactl psmisc ltrace strace perf valgrind
clinfo usbutils pciutils lm_sensors hwloc numactl psmisc ltrace strace perf valgrind

space := $(subst ,, )
comma := ,
Expand Down

0 comments on commit 143e814

Please sign in to comment.