mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
42 lines
950 B
YAML
42 lines
950 B
YAML
|
distributable:
|
||
|
url: https://github.com/laravel/installer/archive/refs/tags/{{version.tag}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: laravel/installer
|
||
|
|
||
|
dependencies:
|
||
|
php.net: ^8.2
|
||
|
getcomposer.org: ^2.7
|
||
|
linux:
|
||
|
info-zip.org/unzip: ^6
|
||
|
|
||
|
build:
|
||
|
- composer install --no-dev
|
||
|
- mkdir -p {{prefix}}/libexec
|
||
|
- cp -r ./* {{prefix}}/libexec
|
||
|
- run: ln -s ../libexec/bin/laravel laravel
|
||
|
working-directory: ${{prefix}}/bin
|
||
|
|
||
|
provides:
|
||
|
- bin/laravel
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
curl.se: '*'
|
||
|
pkgx.sh: ^1
|
||
|
script:
|
||
|
- laravel --version | grep {{version}}
|
||
|
- laravel new blog --no-interaction
|
||
|
- run:
|
||
|
- php artisan serve --port=$PORT > server.log &
|
||
|
- PID=$!
|
||
|
- sleep 5
|
||
|
- curl http://localhost:$PORT
|
||
|
- curl -s http://localhost:$PORT | grep Laravel
|
||
|
- kill $PID
|
||
|
- grep 'Server running' server.log
|
||
|
working-directory: blog
|
||
|
env:
|
||
|
PORT: $(pkgx get-port | tail -n1)
|