mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
b8985b677f
* created eas.dev * added eas.dev * added the build from source argument * added python as a build dependency * changed to python: ~3.10 * set linux llvm version to <17 * changed the node version * env * set node version to v18 * removed build from source tag * sometimes linux wants gcc * clean up and rename --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
41 lines
704 B
YAML
41 lines
704 B
YAML
distributable:
|
|
url: https://github.com/expo/eas-cli/archive/refs/tags/v{{version.raw}}.tar.gz
|
|
strip-components: 1
|
|
|
|
display-name: eas
|
|
|
|
versions:
|
|
github: expo/eas-cli
|
|
|
|
dependencies:
|
|
nodejs.org: ~18
|
|
|
|
build:
|
|
dependencies:
|
|
python.org: ~3.10
|
|
classic.yarnpkg.com: '*'
|
|
linux:
|
|
gnu.org/gcc: '*'
|
|
script:
|
|
- mkdir -p "{{prefix}}"
|
|
- yarn install
|
|
|
|
- run: yarn build-ci
|
|
working-directory: packages/eas-json/
|
|
|
|
- yarn build-ci
|
|
- cp -r * {{prefix}}
|
|
|
|
- run:
|
|
- ln -s ../packages/eas-cli/bin/run bin/eas
|
|
working-directory: ${{prefix}}
|
|
|
|
provides:
|
|
- bin/eas
|
|
|
|
test:
|
|
- eas
|
|
- eas --help
|
|
- eas --version | grep "{{version}}"
|
|
- eas autocomplete zsh
|