From d28e509d8fe79d74300d9db8215310d44b778f78 Mon Sep 17 00:00:00 2001 From: William Vaughn Date: Mon, 29 May 2023 01:13:04 -0700 Subject: [PATCH] change build to a sourcehut fedora image --- .build.yml | 10 ++++++++++ .gitlab-ci.yml | 7 ------- 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 .build.yml delete mode 100644 .gitlab-ci.yml diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..b116ff1 --- /dev/null +++ b/.build.yml @@ -0,0 +1,10 @@ +image: fedora/38 +arch: x86_64 +packages: + - emacs +sources: + - git@git.sr.ht:~willvaughn/emacs-0x0 +tasks: + - test: | + cd emacs-0x0 + emacs -batch -l ert -l 0x0.el -l 0x0-test.el -eval "(ert-run-tests-batch-and-exit '(not (tag :integration)))" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 51812c4..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,7 +0,0 @@ -default: - image: rockylinux/rockylinux - before_script: - - dnf install -y emacs -test: - script: - - "emacs -batch -l ert -l 0x0.el -l 0x0-test.el -eval \"(ert-run-tests-batch-and-exit '(not (tag :integration)))\"" -- 2.45.2