Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
stgraber committed Feb 29, 2024
1 parent ffcc473 commit 1117b3d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Dotfiles CI
on:
- push

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install incus
run: |
curl https://pkgs.zabbly.com/get/incus-stable | sudo sh -x
- name: Check the firewall
run: |
sudo nft list ruleset
sudo iptables -L -n -v
sudo ip6tables -L -n -v
sudo iptables -t nat -L -n -v
sudo ip6tables -t nat -L -n -v
- name: Init incus
run: sudo incus admin init --auto

- name: Launch an arch container
run: sudo incus launch images:b0b987c75be9 archbox

- name: Install ansible on arch
run: |
sleep 10
sudo incus exec archbox -- pacman -S ansible --noconfirm

0 comments on commit 1117b3d

Please sign in to comment.