diff options
| author | Michael Grote | 2023-07-17 22:30:38 +0200 |
|---|---|---|
| committer | Michael Grote | 2023-07-17 22:30:38 +0200 |
| commit | 5f543bb8f98524d64d063dfa68eb29a2531d7bba (patch) | |
| tree | ca2865f2189731728600fb7a3bdae15c38303bdb /.drone.yml | |
| parent | 145e8d7353f079e8f432f2decda48e5285d9ca4e (diff) | |
add dependencies
Diffstat (limited to '.drone.yml')
| -rw-r--r-- | .drone.yml | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -18,7 +18,7 @@ steps: - # checkout latest stable release or stay on master for bleeding edge stuff (but expect bugs!) #- git checkout $(git tag | grep "^v" | tail -n 1) #- export version=$(git tag | grep "^v" | tail -n 1 | tr -d v) - - export version=3.0.0 + - export version=3.0.1 - ls -lah - pwd - chmod 0755 sanoid @@ -33,6 +33,14 @@ steps: --url "https://git.mgrote.net/mg/sanoid-deb" \ -p sanoid_$(echo $version).deb \ -v $(echo $version) \ + --depends debhelper \ + --depends libcapture-tiny-perl \ + --depends libconfig-inifiles-perl \ + --depends pv \ + --depends lzop \ + --depends mbuffer \ + --depends build-essential \ + --depends git \ sanoid=/usr/bin/sanoid \ syncoid=/usr/bin/syncoid \ sanoid.conf=/etc/sanoid/sanoid.conf \ @@ -52,7 +60,7 @@ steps: - cd sanoid - ls -lah - pwd - - export version=3.0.0 + - export version=3.0.1 - echo $version - | curl -X POST -H "token: $auth_token" -F "file=@./sanoid_$(echo $version).deb" http://docker10.grote.lan:5040/upload |