commit: 2209b7347028edf73362e409b8ca746215f5943f parent d0722d42b1aa53b1b15bd479477ef6c070dea6ca Author: fosslinux <fosslinux@aussies.space> Date: Wed, 15 Mar 2023 17:06:44 +1100 Strip out Cirrus CIDiffstat:
D | .cirrus.expect | 15 | --------------- |
D | .cirrus.yml | 70 | ---------------------------------------------------------------------- |
2 files changed, 0 insertions(+), 85 deletions(-)diff --git a/.cirrus.expect b/.cirrus.expect
@@ -1,15 +0,0 @@ -#!/usr/bin/expect - -# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space> -# -# SPDX-License-Identifier: GPL-3.0-or-later - -set timeout -1 - -spawn python3 rootfs.py --qemu-cmd qemu-system-x86_64 --qemu-ram 3500 -expect { - "not syncing: Attempted to kill init" {} - "Bootstrapping completed." {} -} -send -- "\x01" -send -- "x"diff --git a/.cirrus.yml b/.cirrus.yml
@@ -1,70 +0,0 @@ -# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space> -# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu> -# -# SPDX-License-Identifier: GPL-3.0-or-later - -pylint_task: - container: - image: debian:bullseye - deps_script: - - apt-get -y update - - apt-get -y dist-upgrade - - apt-get -y install python3-pip python3-requests - - apt-get -y clean - - pip3 install pylint - check_script: - - pylint rootfs.py sysa.py sysc.py lib/utils.py lib/sysgeneral.py lib/tmpdir.py --disable=duplicate-code - -shell_lint_task: - container: - image: debian:stable - deps_script: - - apt-get -y update - - apt-get -y dist-upgrade - - apt-get -y install shellcheck - - apt-get -y clean - check_script: - - shellcheck sysa/run.sh sysa/run2.sh sysb/init sysb/run.sh sysc/init sysc/run.sh sysa/helpers.sh download-distfiles.sh - -reuse_lint_task: - container: - image: debian:stable - deps_script: - - apt-get -y update - - apt-get -y dist-upgrade - - apt-get -y install python3-pip git - - apt-get -y clean - - pip3 install reuse - check_script: - - reuse lint - -# XXX: Takes too long right now -#run_task: -# timeout_in: 180m -# container: -# image: potyarkin/molecule:host-kvm -# kvm: true -# cpu: 2 -# memory: 4G -# # Required background services -# dbus_background_script: -# - mkdir -p /var/run/dbus -# - /usr/bin/dbus-daemon --system --nofork --nopidfile -# virtlogd_background_script: -# - /usr/sbin/virtlogd -# libvirtd_background_script: -# - sleep 2 && /usr/sbin/libvirtd -# iptables_legacy_script: -# - update-alternatives --set iptables /usr/sbin/iptables-legacy -# deps_script: -# - apt-get -y update -# - apt-get -y dist-upgrade -# - apt-get -y install sudo git cpio linux-image-4.19.0-16-amd64 expect wget -# - apt-get -y clean -# submodule_script: -# - git submodule update --init --recursive -# kernel_script: -# - cp /boot/vmlinuz-4.19.0-16-amd64 ./kernel -# run_script: -# - ./.cirrus.expect | tee -a /tmp/run.log -# - grep -q 'Bootstrapping completed.' /tmp/run.log