This commit is contained in:
Tiara Rodney 2025-05-21 02:07:18 +02:00
commit b5265baa02
No known key found for this signature in database
GPG key ID: 5F43FAB4FBE5B5EB
11 changed files with 3505 additions and 0 deletions

17
bitbucket-pipelines.yml Normal file
View file

@ -0,0 +1,17 @@
image: byteb4rb1e/build-trivy063-ubuntu:latest
definitions:
steps:
- step: &make
name: _all-ubuntu
services:
- docker
caches:
- docker
script:
- echo "$_GPG_SIGNING_KEY" | base64 -d | gpg --import
- docker login -u $DOCKER_USERNAME --password-stdin <<< $DOCKER_PASSWORD
- sh configure
- make $(cat TARGET | tr "\n" " ") PUBLISH=1 ARCHIVE=1 PUBLISH_ARCHIVE=1 SIGN_ARCHIVE=1 SCAN=1 SIGN_SCAN=1 -j2
pipelines:
default:
- step: *make