From bd335f17c890f9ad9dbc6b517a1c2ff3cdcdb492 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 12 Jun 2024 15:21:12 +1200 Subject: [PATCH] builds/archlinux: remove --- .builds/archlinux.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .builds/archlinux.yml diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml deleted file mode 100644 index 30c58b5..0000000 --- a/.builds/archlinux.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -image: archlinux -packages: - - clang - - nix -sources: - - "https://git.sr.ht/~jeremy/callisto" -tasks: - - prepare: | - printf 'experimental-features = nix-command flakes\n' \ - | sudo tee -a /etc/nix/nix.conf - sudo systemctl start nix-daemon - sudo usermod -aG nix-users build - - build-clang: | - cd callisto - ./configure -c clang - make - make clean - - build-gcc: | - cd callisto - ./configure -c gcc - make - - install: | - sudo make -Ccallisto install - - test: | - csto callisto/test.lua - - format: | - cd callisto - make format - git diff --exit-code - - flake: | - nix build ./callisto