0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 05:33:03 -05:00
LibreWolf/.woodpecker.yml

78 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2023-08-17 12:56:16 -05:00
steps:
fetch:
image: alpine
commands:
- apk update -U
- apk add make gnupg
- make fetch-upstream-woodpecker
test:
image: alpine
commands:
- apk update -U
- apk add make patch
- make check-patchfail-woodpecker
build:
image: alpine
commands:
- apk update -U
- apk add make gnupg patch python3 bash xz
- make all
2023-08-29 12:03:03 -05:00
# my ts+axios api stuff
######
2023-08-17 12:56:16 -05:00
#
# release:
# image: alpine
2023-08-17 15:09:56 -05:00
# when:
# - branch: main
2023-08-17 12:56:16 -05:00
# commands:
# - apk update -U
# - apk add nodejs npm
#
# - ( cd .woodpecker.release && npm install && npm run build )
# - ( cd .woodpecker.release && npm run start $(cat ../version)-$(cat ../release) )
#
# secrets: [ cb_api_key ]
#
2023-08-29 12:03:03 -05:00
# uploading to stortage.ci.librewolf.net
####
#
# upload:
# image: woodpeckerci/plugin-s3
# when:
# - branch: main
# settings:
# bucket: artifacts
# source: "*.{tar.gz,sha256sum}"
# target: /${CI_BUILD_NUMBER}
# path_style: true
# endpoint: https://storage.ci.librewolf.net
#
# secrets: [aws_access_key_id, aws_secret_access_key]
#
# display-links:
# image: alpine
# when:
# - branch: main
# commands:
# - echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf-$(cat version)-$(cat release).source.tar.gz"
# - echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf-$(cat version)-$(cat release).source.tar.gz.sha256sum"
#
#
#