ci: run emacs integration tests #173
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 | |
# When to trigger this workflow | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
test: | |
name: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
# run the job on every combination of "os" above | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: "Windows: Install sbcl" | |
if: matrix.os == 'windows-latest' | |
run: | | |
echo "C:\\Program Files\\Steel Bank Common Lisp\\2.0.0\\" >> $env:GITHUB_PATH | |
cat $env:GITHUB_PATH | |
echo "SBCL_HOME=C:\\Program Files\\Steel Bank Common Lisp\\2.0.0\\" >> $env:GITHUB_ENV | |
cat $env:GITHUB_ENV | |
curl -L http://downloads.sourceforge.net/project/sbcl/sbcl/2.0.0/sbcl-2.0.0-x86-64-windows-binary.msi --output sbcl.msi | |
msiexec /qn /i sbcl.msi | |
- name: "Ubuntu: Install sbcl" | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y sbcl | |
- name: "MacOs: Install sbcl" | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install sbcl | |
- name: "Print sbcl version" | |
run: sbcl --version | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup quicklisp | |
run: | | |
curl -kLO https://beta.quicklisp.org/quicklisp.lisp | |
printenv | sort | |
sbcl --noinform --non-interactive --load scripts/setup-quicklisp.lisp | |
- name: Tests | |
shell: bash | |
run: scripts/test.sh | |
- name: 'Upload docs' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: docs | |
path: docs/ | |
emacs: | |
name: "Integration test - emacs" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Run tests | |
run: | | |
scripts/demo/build-docker-image.sh | |
- name: 'Upload screenshots' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: screenshots | |
path: demo.tar |