Skip to content

Commit

Permalink
Meta: Update makem.sh, Makefile, test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alphapapa committed Nov 16, 2020
1 parent 244c829 commit f52bef0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# * test.yml --- Test Emacs packages using makem.sh on GitHub Actions

# https://github.com/alphapapa/makem.sh
# URL: https://github.com/alphapapa/makem.sh
# Version: 0.2

# * Commentary:

# Based on Steve Purcell's examples at
# <https://github.com/purcell/setup-emacs/blob/master/.github/workflows/test.yml>,
Expand Down Expand Up @@ -39,6 +42,7 @@ jobs:
matrix:
emacs_version:
- 26.3
- 27.1
- snapshot
steps:
- uses: purcell/setup-emacs@master
Expand All @@ -50,7 +54,7 @@ jobs:
- name: Initialize sandbox
run: |
SANDBOX_DIR=$(mktemp -d) || exit 1
echo ::set-env name=SANDBOX_DIR::$SANDBOX_DIR
echo "SANDBOX_DIR=$SANDBOX_DIR" >> $GITHUB_ENV
./makem.sh -vv --sandbox=$SANDBOX_DIR --install-deps --install-linters
# The "all" rule is not used, because it treats compilation warnings
Expand All @@ -59,7 +63,7 @@ jobs:
- name: Lint
# NOTE: Uncomment this line to treat lint failures as passing
# so the job doesn't show failure.
continue-on-error: true
# continue-on-error: true
run: ./makem.sh -vv --sandbox=$SANDBOX_DIR lint

- name: Test
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# * makem.sh/Makefile --- Script to aid building and testing Emacs Lisp packages

# This Makefile is from the makem.sh repo: <https://github.com/alphapapa/makem.sh>.
# URL: https://github.com/alphapapa/makem.sh
# Version: 0.2

# * Arguments

Expand Down
3 changes: 2 additions & 1 deletion makem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

# * makem.sh --- Script to aid building and testing Emacs Lisp packages

# https://github.com/alphapapa/makem.sh
# URL: https://github.com/alphapapa/makem.sh
# Version: 0.2

# * Commentary:

Expand Down

0 comments on commit f52bef0

Please sign in to comment.