Skip to content

Update build.yml #161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 33 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,19 @@ jobs:
unix-build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot]
experimental: [false]
emacs: [26.1, 26.2, 26.3, 27.1, 27.2]
include:
- emacs: snapshot
experimental: true
os: ubuntu-latest
- emacs: snapshot
experimental: true
os: macos-latest
continue-on-error: ${{ matrix.experimental }}

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -40,29 +50,30 @@ jobs:
run: |
emacs --version
make test
windows-build:
runs-on: windows-latest
strategy:
matrix:
emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot]

# windows-build:
# runs-on: windows-latest
# strategy:
# matrix:
# emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot]

steps:
- uses: actions/checkout@v2
# steps:
# - uses: actions/checkout@v2

- uses: actions/setup-python@v2
with:
python-version: "3.6"
architecture: "x64"
# - uses: actions/setup-python@v2
# with:
# python-version: "3.6"
# architecture: "x64"

- uses: jcs090218/setup-emacs-windows@master
with:
version: ${{ matrix.emacs }}
# - uses: jcs090218/setup-emacs-windows@master
# with:
# version: ${{ matrix.emacs }}

- uses: conao3/setup-cask@master
with:
version: 0.8.4
# - uses: conao3/setup-cask@master
# with:
# version: 0.8.4

- name: Run a multi-line script
run: |
emacs --version
make test
# - name: Run a multi-line script
# run: |
# emacs --version
# make test