Add cider-clojurec-eval-destination
custom variable
#719
Workflow file for this run
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
name: CI | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
integration: | |
# Run integration tests for all OSs and EMACS_VERSIONs. | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
emacs_version: ['26.3', '27.2', '28.2'] | |
steps: | |
- name: Set up Emacs | |
if: "!startsWith (matrix.os, 'windows')" | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{matrix.emacs_version}} | |
- name: Set up Emacs on Windows | |
if: startsWith (matrix.os, 'windows') | |
uses: jcs090218/setup-emacs-windows@master | |
with: | |
version: ${{matrix.emacs_version}} | |
- name: Install Eldev | |
if: "!startsWith (matrix.os, 'windows')" | |
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh | |
- name: Install Eldev on MS-Windows | |
if: startsWith (matrix.os, 'windows') | |
run: | | |
# Remove expired DST Root CA X3 certificate. Workaround | |
# for https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51038 | |
# bug on Emacs 27.2. | |
gci cert:\LocalMachine\Root\DAC9024F54D8F6DF94935FB1732638CA6AD77C13 | |
gci cert:\LocalMachine\Root\DAC9024F54D8F6DF94935FB1732638CA6AD77C13 | Remove-Item | |
curl.exe -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev.bat | cmd /Q | |
- name: Install deps.clj on MS-Windows | |
if: startsWith (matrix.os, 'windows') | |
run: | | |
iwr -Uri https://raw.githubusercontent.com/borkdude/deps.clj/master/install.ps1 -outfile install_clojure.ps1 | |
.\install_clojure.ps1 | |
get-command deps.exe | split-path -parent | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: Check out the source code | |
uses: actions/checkout@v2 | |
- name: Prepare java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
# shadow requires java 11 | |
java-version: 11 | |
- name: Install Clojure Tools | |
# Use SHA until | |
# https://github.com/DeLaGuardo/setup-clojure/issues/78 is | |
# released | |
uses: DeLaGuardo/setup-clojure@1376ded6747c79645e82c856f16375af5f5de307 | |
with: | |
bb: '1.0.165' | |
cli: '1.10.3.1013' | |
lein: '2.9.10' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install shadow-cljs@2.20.13 -g | |
- run: npm install nbb@1.1.152 -g | |
- name: Test integration | |
run: | | |
# The tests occasionally fail on macos&win in what is seems to | |
# be GH connectivity runner issues. We attempt to address this | |
# problem by rerunning the tests more than once. | |
eldev -p -dtTC test --test-type integration || eldev -p -dtTC test --test-type integration |