79 lines
1.7 KiB
YAML
79 lines
1.7 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '**.rst'
|
|
branches-ignore:
|
|
- 'master'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
emacs_version: [25.3, 26.3, 27.1]
|
|
python_version: [3.7]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python_version }}
|
|
|
|
- uses: purcell/setup-emacs@master
|
|
with:
|
|
version: ${{ matrix.emacs_version }}
|
|
|
|
- name: paths
|
|
run: |
|
|
echo "$HOME/local/bin" >> $GITHUB_PATH
|
|
echo "$HOME/local/cask/bin" >> $GITHUB_PATH
|
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
echo "LD_LIBRARY_PATH=$HOME/.local/lib" >> $GITHUB_ENV
|
|
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/local
|
|
key: ${{ runner.os }}-local-000
|
|
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.emacs.d
|
|
key: emacs.d
|
|
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cask
|
|
key: cask-000
|
|
|
|
- name: apt-get
|
|
if: startsWith(runner.os, 'Linux')
|
|
run: |
|
|
sudo apt-get -yq update
|
|
DEBIAN_FRONTEND=noninteractive sudo apt-get -yq install gnutls-bin sharutils gnupg2 dirmngr libreadline-dev libcurl4-openssl-dev
|
|
|
|
- name: gnupg
|
|
if: startsWith(runner.os, 'macOS')
|
|
run: brew list gnupg &>/dev/null || HOMEBREW_NO_AUTO_UPDATE=1 brew install gnupg
|
|
|
|
- name: versions
|
|
run: |
|
|
curl --version
|
|
emacs --version
|
|
gpg --version
|
|
|
|
- name: cask
|
|
run: |
|
|
sh tools/install-cask.sh
|
|
cask link list
|
|
|
|
- name: test
|
|
run: |
|
|
make test-install
|
|
make test
|
|
continue-on-error: ${{ matrix.emacs_version == 'snapshot' }}
|