ci: copy wrong file

This commit is contained in:
Jen-Chieh Shen 2022-05-10 16:35:39 +08:00
parent 9ff2d0e9c5
commit 73e8431576
2 changed files with 15 additions and 13 deletions

14
Eask
View file

@ -1,16 +1,12 @@
(package "line-reminder"
"0.5.1"
"Line annotation for changed and saved lines")
(package "vs-light-theme"
"1.0"
"Visual Studio IDE light theme")
(package-file "line-reminder.el")
(package-file "vs-light-theme.el")
(source "melpa")
(depends-on "emacs" "25.1")
(depends-on "indicators")
(depends-on "fringe-helper")
(depends-on "ov")
(depends-on "ht")
(depends-on "emacs" "24.1")
(development
(depends-on "ert-runner"))

View file

@ -3,8 +3,6 @@ SHELL := /usr/bin/env bash
EMACS ?= emacs
EASK ?= eask
TEST-FILES := $(shell ls test/vs-light-theme-*.el)
.PHONY: clean checkdoc lint package install compile test
ci: clean package install compile
@ -23,7 +21,15 @@ compile:
test:
@echo "Testing..."
$(EASK) exec ert-runner -L . $(LOAD-TEST-FILES) -t '!no-win' -t '!org'
$(EASK) ert ./test/*.el
checkdoc:
@echo "Run checkdoc..."
$(EASK) checkdoc
lint:
@echo "Run package-lint..."
$(EASK) lint
clean:
rm -rf .eask *.elc
$(EASK) clean-all