-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
706 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install emacs | ||
uses: purcell/setup-emacs@master | ||
with: | ||
version: 29.1 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
architecture: "x64" | ||
|
||
- name: Install debugpy | ||
run: | | ||
pip3 install debugpy | ||
- name: Download codelldb | ||
run: | | ||
sudo apt install wget | ||
mkdir -p ~/.emacs.d/debug-adapters/codelldb/ | ||
wget https://github.com/vadimcn/codelldb/releases/download/v1.10.0/codelldb-x86_64-linux.vsix | ||
unzip codelldb-x86_64-linux.vsix -d ~/.emacs.d/debug-adapters/codelldb/ | ||
- name: Download js-debug | ||
run: | | ||
sudo apt install wget | ||
mkdir -p ~/.emacs.d/debug-adapters/ | ||
wget https://github.com/microsoft/vscode-js-debug/releases/download/v1.84.0/js-debug-dap-v1.84.0.tar.gz | ||
tar -xvzf js-debug-dap-v1.84.0.tar.gz -C ~/.emacs.d/debug-adapters | ||
- name: Install ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.2' | ||
|
||
- name: Install rdbg | ||
run: gem install debug | ||
|
||
- name: Build | ||
run: make all | ||
|
||
- name: Test | ||
run: make check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export EMACS ?= $(shell which emacs) | ||
|
||
ELFILES = dape.el dape-tests.el | ||
ELCFILES = $(addsuffix .elc, $(basename $(ELFILES))) | ||
|
||
all: $(ELCFILES) | ||
|
||
%.elc: %.el | ||
@echo Compiling $< | ||
@${EMACS} -batch -q -no-site-file -L . -f batch-byte-compile $< | ||
|
||
check: $(ELCFILES) | ||
@${EMACS} -batch -l ert $(foreach file, $^, -l $(file)) -f ert-run-tests-batch-and-exit | ||
|
||
clean: | ||
@rm -f *.elc |
Oops, something went wrong.