mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
cask.readthedocs.io (#2560)
* cask.readthedocs.io * + version test * without install * Timeout for avoiding hanging. * without darwin/aarch64 * cleanup and comments * fixes * gha... --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
parent
c46d559a04
commit
6ce24ee4a8
1 changed files with 34 additions and 0 deletions
34
projects/cask.readthedocs.io/package.yml
Normal file
34
projects/cask.readthedocs.io/package.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
distributable:
|
||||
url: https://github.com/cask/cask/archive/v{{version}}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: cask/cask/tags
|
||||
|
||||
dependencies:
|
||||
gnu.org/coreutils: '*'
|
||||
gnu.org/emacs: '*'
|
||||
|
||||
build:
|
||||
script:
|
||||
- mkdir -p {{prefix}}
|
||||
- cp -a bin {{prefix}}
|
||||
# Lisp files must stay here: https://github.com/cask/cask/issues/305
|
||||
- install *.el {{prefix}}/
|
||||
- cp -a package-build {{prefix}}
|
||||
- run: |
|
||||
ln ../cask.el .
|
||||
ln ../cask-bootstrap.el .
|
||||
working-directory: ${{prefix}}/elisp
|
||||
- touch {{prefix}}/.no-upgrade
|
||||
|
||||
provides:
|
||||
- bin/cask
|
||||
|
||||
test:
|
||||
# Downloading lisp packages fails on GHA runners for some reason
|
||||
- run: exit 0
|
||||
if: linux+x86-64
|
||||
|
||||
# Some of the lisp packages 404 and hang the test.
|
||||
- timeout 60s cask --version | grep {{version}}
|
Loading…
Reference in a new issue