ci: fix package publication rules
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
f384c0a45e
commit
b5a8e14de6
1 changed files with 13 additions and 13 deletions
18
.drone.yml
18
.drone.yml
|
@ -11,17 +11,14 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- apk update
|
- apk update
|
||||||
- apk add cmake gcc g++ libnet libnet-dev debian-devscripts rpm make
|
- apk add cmake gcc g++ libnet libnet-dev debian-devscripts rpm make
|
||||||
- cmake -S . -B _build
|
- make build
|
||||||
- cmake --build _build
|
- make package
|
||||||
- make -C _build/ package
|
|
||||||
- mkdir -p /_cache/bin /_cache/packages
|
- mkdir -p /_cache/bin /_cache/packages
|
||||||
- cp -r _build/igmpgen /_cache/bin/$PACKAGE_BASENAME
|
- cp -r _build/igmpgen /_cache/bin/$PACKAGE_BASENAME
|
||||||
- cp -r _build/igmpgen*.deb /_cache/packages/
|
- cp -r _build/igmpgen*.deb /_cache/packages/
|
||||||
- cp -r _build/igmpgen*.rpm /_cache/packages/
|
- cp -r _build/igmpgen*.rpm /_cache/packages/
|
||||||
- cp -r _build/igmpgen*.tar.gz /_cache/packages/
|
- cp -r _build/igmpgen*.tar.gz /_cache/packages/
|
||||||
# - ls -l _build
|
# - ls -l _build
|
||||||
# - cp -r _build/igmpgen /_cache/bin/$PACKAGE_BASENAME
|
|
||||||
# - _build/igmpgen --help
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: cache
|
||||||
path: /_cache
|
path: /_cache
|
||||||
|
@ -31,7 +28,7 @@ steps:
|
||||||
environment:
|
environment:
|
||||||
PACKAGE_UPLOAD_URL: https://code.apps.glenux.net/api/v1/packages/glenux/generic/igmpgen
|
PACKAGE_UPLOAD_URL: https://code.apps.glenux.net/api/v1/packages/glenux/generic/igmpgen
|
||||||
RELEASES_URL: https://code.apps.glenux.net/api/v1/repos/glenux/igmpgen/releases
|
RELEASES_URL: https://code.apps.glenux.net/api/v1/repos/glenux/igmpgen/releases
|
||||||
PACKAGE_BASENAME: igmpgen_linux_amd64
|
PACKAGE_BASENAME: igmpgen
|
||||||
RELEASE_UPLOAD_TOKEN:
|
RELEASE_UPLOAD_TOKEN:
|
||||||
from_secret: RELEASE_UPLOAD_TOKEN
|
from_secret: RELEASE_UPLOAD_TOKEN
|
||||||
PACKAGE_UPLOAD_TOKEN:
|
PACKAGE_UPLOAD_TOKEN:
|
||||||
|
@ -66,15 +63,18 @@ steps:
|
||||||
TAG_ID="$(curl -X 'GET' \
|
TAG_ID="$(curl -X 'GET' \
|
||||||
-H 'accept: application/json' \
|
-H 'accept: application/json' \
|
||||||
"$RELEASES_URL/tags/$DRONE_TAG" | jq -r .id)"
|
"$RELEASES_URL/tags/$DRONE_TAG" | jq -r .id)"
|
||||||
echo "TAG_ID=$TAG_ID"
|
- echo "TAG_ID=$TAG_ID"
|
||||||
- |
|
- |
|
||||||
set -x
|
set -x
|
||||||
|
for package_path in /_cache/packages/* ; do \
|
||||||
|
package_name="$(basename "$package_path")"
|
||||||
curl -X POST \
|
curl -X POST \
|
||||||
-H "Authorization: token $RELEASE_UPLOAD_TOKEN" \
|
-H "Authorization: token $RELEASE_UPLOAD_TOKEN" \
|
||||||
-H "accept: application/json" \
|
-H "accept: application/json" \
|
||||||
-H "Content-Type: multipart/form-data" \
|
-H "Content-Type: multipart/form-data" \
|
||||||
-F "attachment=@/_cache/bin/$PACKAGE_BASENAME" \
|
-F "attachment=@$package_name" \
|
||||||
"$RELEASES_URL/$TAG_ID/assets?name=$PACKAGE_BASENAME"
|
"$RELEASES_URL/$TAG_ID/assets?name=$package_name" ; \
|
||||||
|
done
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- name: docker
|
- name: docker
|
||||||
|
|
Loading…
Reference in a new issue