Add axolotl & update repositories #29
Workflow file for this run
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
name: Build ISO (CUDA) | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleanup | |
uses: rokibhasansagar/slimhub_actions@main | |
with: | |
retain: "docker_imgcache,docker_buildkit,docker_imgcache" | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build image | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: archlinux:latest | |
options: --privileged --volume ${{ github.workspace }}:/workspace | |
run: | | |
# Refresh package databases | |
pacman --sync --noconfirm --refresh | |
# Upgrade system | |
pacman --sync --noconfirm --sysupgrade | |
# Install required packages | |
pacman --sync --noconfirm --needed archiso | |
# Apply patch to archiso | |
patch << EOF | |
--- /usr/bin/mkarchiso | |
+++ /usr/bin/mkarchiso | |
@@ -1227,6 +1227,10 @@ | |
if [[ -v cert_list ]]; then | |
_cms_sign_artifact "${airootfs_image_filename}" | |
fi | |
+ | |
+ _msg_info 'Removing the pacstrap directory...' | |
+ rm -rf -- "${pacstrap_dir:?}/" | |
+ _msg_info 'Done!' | |
} | |
# export build artifacts for netboot | |
EOF | |
# Build image | |
mkarchiso -v -m iso -w /workspace/work -o /workspace/out /workspace | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: archiso-output | |
path: out/ |