diff options
| author | brotzeit <brotzeitmacher@gmail.com> | 2022-04-28 12:04:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-28 12:04:48 +0200 |
| commit | d17be3051b22a06d7742178cd1367aed61807a66 (patch) | |
| tree | 44c9608eb880990e74c7a4864a98c2a15b0ba573 | |
| parent | 26ecc903c50b2ffd289bbe981f9ad03626fc0057 (diff) | |
| parent | 46325b435037b5dd96a724fed83e940a7015a848 (diff) | |
| download | rust-mode-d17be3051b22a06d7742178cd1367aed61807a66.tar.gz | |
Merge pull request #444 from jcs-PR/ci-eask
Use Eask for CI
| -rw-r--r-- | .github/workflows/test.yml | 20 | ||||
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | Eask | 16 | ||||
| -rw-r--r-- | Makefile | 64 |
4 files changed, 53 insertions, 51 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6b016cf..a970eda 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,28 +3,34 @@ name: CI on: [push, pull_request] jobs: - unix-test: - runs-on: ubuntu-latest + test: + runs-on: ${{ matrix.os }} strategy: - max-parallel: 6 + fail-fast: false matrix: + os: [ubuntu-latest, macos-latest, windows-latest] emacs-version: - 26.3 - 27.2 + - 28.1 # - snapshot steps: - uses: actions/checkout@v2 - - uses: purcell/setup-emacs@master + - uses: jcs090218/setup-emacs@master with: version: ${{ matrix.emacs-version }} - - uses: conao3/setup-cask@master + - uses: actions/setup-node@v2 with: - version: 0.8.4 + node-version: '16' + + - uses: emacs-eask/setup-eask@master + with: + version: 'snapshot' - name: Run tests run: | - make test + make ci @@ -1 +1,5 @@ *.elc +*-autoloads.el + +.eask +/dist @@ -0,0 +1,16 @@ +(package "rust-mode" + "1.0.4" + "A major-mode for editing Rust source code") + +(package-file "rust-mode.el") + +(files + "rust-cargo.el" + "rust-compile.el" + "rust-playpen.el" + "rust-rustfmt.el" + "rust-utils.el") + +(depends-on "emacs" "25.1") + +(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432 @@ -8,64 +8,40 @@ PKG = rust-mode EMACS ?= emacs EMACS_ARGS ?= - -ELS = rust-mode.el -ELS += rust-cargo.el -ELS += rust-compile.el -ELS += rust-playpen.el -ELS += rust-rustfmt.el -ELS += rust-utils.el -ELCS = $(ELS:.el=.elc) +EASK ?= eask DEPS = LOAD_PATH ?= $(addprefix -L ../,$(DEPS)) LOAD_PATH += -L . -lisp: $(ELCS) loaddefs +# TODO: add checkdoc and lint +ci: build compile test + +build: + $(EASK) package + $(EASK) install -%.elc: %.el +compile: @printf "Compiling $<\n" - @$(EMACS) -Q --batch $(EMACS_ARGS) \ - $(LOAD_PATH) --funcall batch-byte-compile $< + $(EASK) compile test: - @$(EMACS) -Q --batch -L . -l rust-mode.el \ - -l rust-mode-tests.el -f ert-run-tests-batch-and-exit + $(EASK) ert rust-mode-tests.el + +checkdoc: + $(EASK) checkdoc + +lint: + $(EASK) lint -CLEAN = $(ELCS) $(PKG)-autoloads.el +CLEAN = $(PKG)-autoloads.el clean: @printf "Cleaning...\n" @rm -rf $(CLEAN) + $(EASK) clean-all -loaddefs: $(PKG)-autoloads.el - -define LOADDEFS_TMPL -;;; $(PKG)-autoloads.el --- automatically extracted autoloads -;; -;;; Code: -(add-to-list 'load-path (directory-file-name \ -(or (file-name-directory #$$) (car load-path)))) - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; End: -;;; $(PKG)-autoloads.el ends here -endef -export LOADDEFS_TMPL -#' - -$(PKG)-autoloads.el: $(ELS) +$(PKG)-autoloads.el: @printf "Generating $@\n" - @printf "%s" "$$LOADDEFS_TMPL" > $@ - @$(EMACS) -Q --batch --eval "(progn\ - (setq make-backup-files nil)\ - (setq vc-handled-backends nil)\ - (setq default-directory (file-truename default-directory))\ - (setq generated-autoload-file (expand-file-name \"$@\"))\ - (setq find-file-visit-truename t)\ - (update-directory-autoloads default-directory))" - + $(EASK) autoloads |
