pantry/projects/priver.dev/geni/package.yml
Jacob Heider f63bb9e5e0
fix(geni)
requires DATABASE_URL from 0.0.11

closes #5307
2024-02-21 13:38:48 -05:00

42 lines
926 B
YAML

distributable:
url: https://github.com/emilpriver/geni/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
provides:
- bin/geni
versions:
github: emilpriver/geni
strip: /^v/
build:
dependencies:
rust-lang.org: '>=1.65'
rust-lang.org/cargo: '*'
script:
# 0.0.4 got released without a version bump
- run: sed -i -e 's/"0\.0\.3"/"{{version}}"/g' Cargo.toml src/main.rs
if: '=0.0.4'
- cargo install --locked --path . --root {{prefix}}
test:
env:
DATABASE_URL: 'sqlite://./database.sqlite'
dependencies:
sqlite.org: '*'
script:
- test "$(geni --version)" = "geni v{{version}}"
- geni new test
- run: cat $FIXTURE >> migrations/*_test.up.sql
fixture: |
CREATE TABLE Persons (
PersonID int
)
- run: cat $FIXTURE >> migrations/*_test.down.sql
fixture: |
DROP TABLE Persons;
- geni up
- geni down