Normalize dependency-defs before resolving inferred-system files (#47) #92
This file contains hidden or 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: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| load: | |
| # Github Actions changes the HOME default, breaking ASDF/quicklisp | |
| env: | |
| HOME: /root | |
| ARTIFACTS: /github/home | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mmgeorge/sbcl-debian:1.4.2 | |
| steps: | |
| # - uses: actions/checkout@v2 | |
| - name: Checkout | |
| run: | | |
| git clone https://github.com/mmgeorge/sly-asdf ~/common-lisp/sly-asdf --depth 1 | |
| git clone https://github.com/joaotavora/sly ~/common-lisp/sly --depth 1 | |
| - name: Load package | |
| run: sbcl --eval '(asdf:load-system "slynk-asdf")' --non-interactive 2>&1 | tee $ARTIFACTS/log.txt | |
| - name: Print log | |
| run: cat $ARTIFACTS/log.txt | |
| - name: Check for undefined symbols | |
| # Ignore SLYNK::CLASSIFY-SYMBOL as unrelated to `sly-asdf` (in main sly contrib) | |
| run: | | |
| ! grep -v SLYNK::CLASSIFY-SYMBOL $ARTIFACTS/log.txt | grep undefined |