Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nnicandro committed Nov 18, 2024
1 parent 40e966a commit 91658cd
Showing 1 changed file with 46 additions and 7 deletions.
53 changes: 46 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,53 @@
on: push
jobs:
test:
test-windows:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version: [27.2, 28.2, 29.3, snapshot]
runs-on: windows-latest
defaults:
run:
shell: powershell
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: jcs090218/setup-emacs-windows@master
with:
version: ${{ matrix.emacs-version }}
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
- name: Install requirements
run: |
conda install -c conda-forge pandoc
conda install -c anaconda jupyter
curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh
# Make eldev available to all future actions
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Check Jupyter version
run: |
mkdir -p $(jupyter --runtime-dir)
jupyter --paths
jupyter --version
jupyter kernelspec list
- name: Byte compilation
run: |
msys2 -c 'make compile'
- name: Run tests
run: |
msys2 -c 'make test'
test-unix-like:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
emacs-version: [27.2, 28.2, 29.3, snapshot]
exclude:
- os: macos-latest
emacs-version: 27.2
defaults:
run:
shell: bash -el {0}
Expand All @@ -15,11 +58,6 @@ jobs:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
if: ${{ matrix.os != 'windows-latest' }}
- uses: jcs090218/setup-emacs-windows@master
with:
version: ${{ matrix.emacs-version }}
if: ${{ matrix.os == 'windows-latest' }}
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
Expand All @@ -39,6 +77,7 @@ jobs:
jupyter kernelspec list
- name: Byte compilation
run: |
emacs -Q --batch --eval='(princ (concat system-configuration "\n"))'
make compile
- name: Run tests
run: |
Expand Down

0 comments on commit 91658cd

Please sign in to comment.