-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from 40ants/big-refactoring
Big refactoring
- Loading branch information
Showing
29 changed files
with
1,557 additions
and
452 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"name": "CI", | ||
"on": { | ||
"push": { | ||
"branches": [ | ||
"master" | ||
] | ||
}, | ||
"pull_request": null, | ||
"schedule": [ | ||
{ | ||
"cron": "0 10 * * 1" | ||
} | ||
] | ||
}, | ||
"jobs": { | ||
"run-tests": { | ||
"strategy": { | ||
"fail-fast": false, | ||
"matrix": { | ||
"lisp": [ | ||
"sbcl-bin", | ||
"ccl-bin/1.12.0" | ||
] | ||
} | ||
}, | ||
"runs-on": "ubuntu-latest", | ||
"env": { | ||
"OS": "ubuntu-latest", | ||
"QUICKLISP_DIST": "quicklisp", | ||
"LISP": "${{ matrix.lisp }}" | ||
}, | ||
"steps": [ | ||
{ | ||
"name": "Checkout Code", | ||
"uses": "actions/checkout@v3" | ||
}, | ||
{ | ||
"name": "Grant All Perms to Make Cache Restoring Possible", | ||
"run": "sudo mkdir -p /usr/local/etc/roswell\n sudo chown \"${USER}\" /usr/local/etc/roswell\n # Here the ros binary will be restored:\n sudo chown \"${USER}\" /usr/local/bin", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Get Current Month", | ||
"id": "current-month", | ||
"run": "echo \"value=$(date -u \"+%Y-%m\")\" >> $GITHUB_OUTPUT", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Cache Roswell Setup", | ||
"id": "cache", | ||
"uses": "actions/cache@v3", | ||
"with": { | ||
"path": "qlfile\nqlfile.lock\n~/.cache/common-lisp/\n~/.roswell\n/usr/local/etc/roswell\n/usr/local/bin/ros\n/usr/local/Cellar/roswell\n.qlot", | ||
"key": "a-${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-ubuntu-latest-quicklisp-${{ matrix.lisp }}-${{ hashFiles('qlfile.lock', '*.asd') }}" | ||
} | ||
}, | ||
{ | ||
"name": "Restore Path To Cached Files", | ||
"run": "echo $HOME/.roswell/bin >> $GITHUB_PATH\n echo .qlot/bin >> $GITHUB_PATH", | ||
"shell": "bash", | ||
"if": "steps.cache.outputs.cache-hit == 'true'" | ||
}, | ||
{ | ||
"name": "Setup Common Lisp Environment", | ||
"uses": "40ants/setup-lisp@v2", | ||
"with": { | ||
"asdf-system": "cl-brewer" | ||
}, | ||
"if": "steps.cache.outputs.cache-hit != 'true'" | ||
}, | ||
{ | ||
"name": "Run Tests", | ||
"uses": "40ants/run-tests@v2", | ||
"with": { | ||
"asdf-system": "cl-brewer", | ||
"coveralls-token": "\n${{ matrix.lisp == 'sbcl-bin' &&\n matrix.os == 'ubuntu-latest' &&\n matrix.quicklisp == 'ultralisp' &&\n secrets.github_token }}" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"name": "DOCS", | ||
"on": { | ||
"push": { | ||
"branches": [ | ||
"master" | ||
] | ||
}, | ||
"pull_request": null, | ||
"schedule": [ | ||
{ | ||
"cron": "0 10 * * 1" | ||
} | ||
] | ||
}, | ||
"jobs": { | ||
"build-docs": { | ||
"runs-on": "ubuntu-latest", | ||
"env": { | ||
"OS": "ubuntu-latest", | ||
"QUICKLISP_DIST": "quicklisp", | ||
"LISP": "sbcl-bin" | ||
}, | ||
"steps": [ | ||
{ | ||
"name": "Checkout Code", | ||
"uses": "actions/checkout@v3" | ||
}, | ||
{ | ||
"name": "Grant All Perms to Make Cache Restoring Possible", | ||
"run": "sudo mkdir -p /usr/local/etc/roswell\n sudo chown \"${USER}\" /usr/local/etc/roswell\n # Here the ros binary will be restored:\n sudo chown \"${USER}\" /usr/local/bin", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Get Current Month", | ||
"id": "current-month", | ||
"run": "echo \"value=$(date -u \"+%Y-%m\")\" >> $GITHUB_OUTPUT", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Cache Roswell Setup", | ||
"id": "cache", | ||
"uses": "actions/cache@v3", | ||
"with": { | ||
"path": "qlfile\nqlfile.lock\n~/.cache/common-lisp/\n~/.roswell\n/usr/local/etc/roswell\n/usr/local/bin/ros\n/usr/local/Cellar/roswell\n.qlot", | ||
"key": "a-${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-ubuntu-latest-quicklisp-sbcl-bin-${{ hashFiles('qlfile.lock', '*.asd') }}" | ||
} | ||
}, | ||
{ | ||
"name": "Restore Path To Cached Files", | ||
"run": "echo $HOME/.roswell/bin >> $GITHUB_PATH\n echo .qlot/bin >> $GITHUB_PATH", | ||
"shell": "bash", | ||
"if": "steps.cache.outputs.cache-hit == 'true'" | ||
}, | ||
{ | ||
"name": "Setup Common Lisp Environment", | ||
"uses": "40ants/setup-lisp@v2", | ||
"with": { | ||
"asdf-system": "cl-brewer-docs" | ||
}, | ||
"if": "steps.cache.outputs.cache-hit != 'true'" | ||
}, | ||
{ | ||
"name": "Build Docs", | ||
"uses": "40ants/build-docs@v1", | ||
"with": { | ||
"asdf-system": "cl-brewer-docs", | ||
"error-on-warnings": true | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
{ | ||
"name": "LINTER", | ||
"on": { | ||
"push": { | ||
"branches": [ | ||
"master" | ||
] | ||
}, | ||
"pull_request": null, | ||
"schedule": [ | ||
{ | ||
"cron": "0 10 * * 1" | ||
} | ||
] | ||
}, | ||
"jobs": { | ||
"linter": { | ||
"runs-on": "ubuntu-latest", | ||
"env": { | ||
"OS": "ubuntu-latest", | ||
"QUICKLISP_DIST": "quicklisp", | ||
"LISP": "sbcl-bin" | ||
}, | ||
"steps": [ | ||
{ | ||
"name": "Checkout Code", | ||
"uses": "actions/checkout@v3" | ||
}, | ||
{ | ||
"name": "Grant All Perms to Make Cache Restoring Possible", | ||
"run": "sudo mkdir -p /usr/local/etc/roswell\n sudo chown \"${USER}\" /usr/local/etc/roswell\n # Here the ros binary will be restored:\n sudo chown \"${USER}\" /usr/local/bin", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Get Current Month", | ||
"id": "current-month", | ||
"run": "echo \"value=$(date -u \"+%Y-%m\")\" >> $GITHUB_OUTPUT", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Cache Roswell Setup", | ||
"id": "cache", | ||
"uses": "actions/cache@v3", | ||
"with": { | ||
"path": "qlfile\nqlfile.lock\n~/.cache/common-lisp/\n~/.roswell\n/usr/local/etc/roswell\n/usr/local/bin/ros\n/usr/local/Cellar/roswell\n.qlot", | ||
"key": "a-${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-ubuntu-latest-quicklisp-sbcl-bin-${{ hashFiles('qlfile.lock', '*.asd') }}" | ||
} | ||
}, | ||
{ | ||
"name": "Restore Path To Cached Files", | ||
"run": "echo $HOME/.roswell/bin >> $GITHUB_PATH\n echo .qlot/bin >> $GITHUB_PATH", | ||
"shell": "bash", | ||
"if": "steps.cache.outputs.cache-hit == 'true'" | ||
}, | ||
{ | ||
"name": "Setup Common Lisp Environment", | ||
"uses": "40ants/setup-lisp@v2", | ||
"with": { | ||
"asdf-system": "cl-brewer" | ||
}, | ||
"if": "steps.cache.outputs.cache-hit != 'true'" | ||
}, | ||
{ | ||
"name": "Change dist to Ultralisp if qlfile does not exist", | ||
"run": "if [[ ! -e qlfile ]]; then echo 'dist ultralisp http://dist.ultralisp.org' > qlfile; fi", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Update Qlot", | ||
"run": "qlot update --no-deps", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Install SBLint wrapper", | ||
"run": "qlot exec ros install 40ants-asdf-system 40ants-linter", | ||
"shell": "bash" | ||
}, | ||
{ | ||
"name": "Run Linter", | ||
"run": "qlot exec 40ants-linter --system \"cl-brewer, cl-brewer-docs, cl-brewer-tests\"", | ||
"shell": "bash" | ||
} | ||
] | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
*.fasl | ||
/bundle-libs/ | ||
/quicklisp/ | ||
/.qlot/ | ||
/sly/ | ||
/cl-brewer-buildapp | ||
/cl-brewer-asdf | ||
.qlot/ | ||
/docs/build/ | ||
*~ | ||
.#* | ||
.*.~undo-tree~ | ||
.DS_Store |
Oops, something went wrong.