Skip to content

Commit

Permalink
Merge 95dfb7c into 3517968
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Feb 25, 2021
2 parents 3517968 + 95dfb7c commit 9046baf
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
37 changes: 36 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,34 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Grant All Perms to Make Cache Restoring Possible
run: |
sudo mkdir -p /usr/local/etc/roswell
sudo chown "${USER}" /usr/local/etc/roswell
# Here the ros binary will be restored:
sudo chown "${USER}" /usr/local/bin
- name: Get Current Month
id: current-month
run: |
echo "::set-output name=value::$(date -u "+%Y-%m")"
- name: Cache Roswell Setup
id: cache
uses: actions/cache@v2
env:
cache-name: cache-roswell-v1
with:
path: |
/usr/local/bin/ros
~/.cache/common-lisp/
~/.roswell
/usr/local/etc/roswell
.qlot
key: "${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-${{ matrix.os }}-${{ matrix.quicklisp-dist }}-${{ matrix.lisp }}-${{ hashFiles('qlfile.lock') }}"
- name: Restore Path To Cached Files
run: |
echo $HOME/.roswell/bin >> $GITHUB_PATH
echo .qlot/bin >> $GITHUB_PATH
if: steps.cache.outputs.cache-hit == 'true'
- uses: 40ants/setup-lisp@v1
with:
asdf-system: cl-info
Expand All @@ -99,11 +127,18 @@ jobs:
{% endifequal %}
github mgl-pax svetlyak40wt/mgl-pax :branch mgl-pax-minimal
if: steps.cache.outputs.cache-hit != 'true'

- name: Check Qlfile content
run: cat qlfile

- name: Check Qlfile.lock content
run: cat qlfile.lock

- name: Check Roswell setup
run: ros config

- uses: 40ants/run-tests@v2
- uses: 40ants/run-tests@v2.1.2
with:
asdf-system: cl-info
coveralls-token: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ jobs:
with:
asdf-system: cl-info
# ngrok-auth-token: ${{ secrets.NGROK_AUTH_TOKEN }}

4 changes: 2 additions & 2 deletions qlfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
("ultralisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest)
:version "20210219143000"))
:version "20210225103501"))
("bordeaux-threads" .
(:class qlot/source/github:source-github
:initargs (:repos "svetlyak40wt/bordeaux-threads" :ref nil :branch "fix-apiv2-for-no-threads" :tag nil)
:version "github-c5ed58df63356d7e2892b54cbd9dd7da"))
("mgl-pax" .
(:class qlot/source/github:source-github
:initargs (:repos "svetlyak40wt/mgl-pax" :ref nil :branch "mgl-pax-minimal" :tag nil)
:version "github-dc8a4585d7b9fe7b4c83a4bc2f338eab"))
:version "github-6c4eecc1be34466756e6096d1c5071f5"))

0 comments on commit 9046baf

Please sign in to comment.