2020-10-07 10:36:04 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: linux-release
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: feather:linux
|
|
|
|
volumes:
|
|
|
|
- name: ccache_linux_release
|
|
|
|
path: /root/.ccache
|
2021-01-14 20:38:14 +00:00
|
|
|
- name: monero
|
|
|
|
path: /drone/src/monero
|
2020-10-07 10:36:04 +00:00
|
|
|
- name: files_linux_release
|
|
|
|
path: /files
|
|
|
|
commands:
|
2021-01-14 20:38:14 +00:00
|
|
|
- TOR_BIN="/usr/local/tor/bin/tor" make -j11 release-static
|
2021-01-15 21:04:53 +00:00
|
|
|
- contrib/build-appimage.sh
|
2020-10-07 10:36:04 +00:00
|
|
|
environment:
|
|
|
|
OPENSSL_ROOT_DIR: /usr/local/openssl/
|
|
|
|
CMAKEFLAGS_EXTRA: -DFETCH_DEPS=Off
|
|
|
|
- name: deploy
|
|
|
|
image: feather:linux
|
|
|
|
volumes:
|
|
|
|
- name: ccache_linux_release
|
|
|
|
path: /root/.ccache
|
|
|
|
- name: files_linux_release
|
2021-01-15 21:04:53 +00:00
|
|
|
path: /linux-release
|
|
|
|
- name: files_linux_appimage
|
|
|
|
path: /linux-release-appimage
|
2020-10-07 10:36:04 +00:00
|
|
|
commands:
|
2020-10-15 23:48:47 +00:00
|
|
|
- export FN="feather-`echo $DRONE_COMMIT_AFTER | cut -c 1-7`.zip"
|
2021-01-15 21:04:53 +00:00
|
|
|
- export TARGET_DIR="/linux-release/$DRONE_SOURCE_BRANCH"
|
2020-10-07 10:36:04 +00:00
|
|
|
- mkdir -p "$TARGET_DIR"
|
|
|
|
- echo "writing to $TARGET_DIR/$FN"
|
|
|
|
- strip -s build/bin/feather
|
|
|
|
- zip -j "$TARGET_DIR/$FN" build/feather.log build/bin/feather
|
|
|
|
- echo "[*] written to https://build.featherwallet.org/files/linux-release/$DRONE_SOURCE_BRANCH/$FN"
|
2021-01-15 21:04:53 +00:00
|
|
|
- # AppImage
|
|
|
|
- export FN="feather-`git rev-parse --short HEAD`.AppImage"
|
|
|
|
- export TARGET_DIR="/linux-release-appimage/$DRONE_SOURCE_BRANCH"
|
|
|
|
- mkdir -p "$TARGET_DIR"
|
|
|
|
- echo "writing to $TARGET_DIR/$FN"
|
|
|
|
- mv "feather.AppImage" "$TARGET_DIR/$FN"
|
|
|
|
- echo "[*] written to https://build.featherwallet.org/files/linux-release-appimage/$DRONE_SOURCE_BRANCH/$FN"
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: ccache_linux_release
|
|
|
|
host:
|
|
|
|
path: /var/drone/ccache_linux_release/
|
2021-01-14 20:38:14 +00:00
|
|
|
- name: monero
|
|
|
|
host:
|
|
|
|
path: /var/drone/monero
|
2020-10-07 10:36:04 +00:00
|
|
|
- name: files_linux_release
|
|
|
|
host:
|
2020-10-17 21:14:56 +00:00
|
|
|
path: /build/feather_files/files/linux-release/
|
2021-01-15 21:04:53 +00:00
|
|
|
- name: files_linux_appimage
|
|
|
|
host:
|
|
|
|
path: /build/feather_files/files/linux-release-appimage/
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2021-01-12 00:56:09 +00:00
|
|
|
name: windows-release
|
2020-10-07 10:36:04 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: feather:win
|
|
|
|
volumes:
|
2021-01-14 20:38:14 +00:00
|
|
|
- name: ccache_win_release
|
|
|
|
path: /root/.ccache
|
2020-10-07 10:36:04 +00:00
|
|
|
- name: files_win_release
|
|
|
|
path: /files
|
2021-01-14 20:38:14 +00:00
|
|
|
- name: monero
|
|
|
|
path: /drone/src/monero
|
2020-10-07 10:36:04 +00:00
|
|
|
commands:
|
2021-01-14 20:38:14 +00:00
|
|
|
- TOR_BIN="/usr/local/tor/bin/tor.exe" make depends root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j11
|
2020-10-07 10:36:04 +00:00
|
|
|
environment:
|
|
|
|
CMAKEFLAGS_EXTRA: -DFETCH_DEPS=Off
|
|
|
|
- name: deploy
|
|
|
|
image: feather:win
|
|
|
|
volumes:
|
|
|
|
- name: files_win_release
|
|
|
|
path: /files
|
|
|
|
commands:
|
2020-10-15 23:48:47 +00:00
|
|
|
- export FN="feather-`echo $DRONE_COMMIT_AFTER | cut -c 1-7`.zip"
|
2020-10-07 10:36:04 +00:00
|
|
|
- export TARGET_DIR="/files/$DRONE_SOURCE_BRANCH"
|
|
|
|
- mkdir -p "$TARGET_DIR"
|
|
|
|
- echo "writing to $TARGET_DIR/$FN"
|
2021-01-14 20:38:14 +00:00
|
|
|
- zip -j "$TARGET_DIR/$FN" build/x86_64-w64-mingw32/release/bin/feather.exe
|
|
|
|
- echo "[*] written to https://build.featherwallet.org/files/windows-release/$DRONE_SOURCE_BRANCH/$FN"
|
2020-10-07 10:36:04 +00:00
|
|
|
volumes:
|
2021-01-14 20:38:14 +00:00
|
|
|
- name: ccache_win_release
|
|
|
|
host:
|
|
|
|
path: /var/drone/ccache_win_release/
|
2020-10-07 10:36:04 +00:00
|
|
|
- name: files_win_release
|
|
|
|
host:
|
2021-01-12 00:56:09 +00:00
|
|
|
path: /build/feather_files/files/windows-release/
|
2021-01-14 20:38:14 +00:00
|
|
|
- name: monero
|
|
|
|
host:
|
|
|
|
path: /var/drone/monero
|
2020-12-08 21:03:04 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: mac-release
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: feather:mac
|
|
|
|
volumes:
|
|
|
|
- name: files_mac_release
|
|
|
|
path: /files
|
|
|
|
commands:
|
|
|
|
- mkdir -p build
|
|
|
|
- ssh administrator@steve.jobs.xmr.pm "chmod +x build_macos.sh && PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin ~/build_macos.sh $DRONE_COMMIT_SHA"
|
|
|
|
- scp -P22 administrator@steve.jobs.xmr.pm:feather.zip build/feather.zip
|
|
|
|
- name: deploy
|
|
|
|
image: feather:mac
|
|
|
|
volumes:
|
|
|
|
- name: files_mac_release
|
|
|
|
path: /files
|
|
|
|
commands:
|
|
|
|
- export FN="feather-`echo $DRONE_COMMIT_AFTER | cut -c 1-7`.zip"
|
|
|
|
- export TARGET_DIR="/files/$DRONE_SOURCE_BRANCH"
|
|
|
|
- mkdir -p "$TARGET_DIR"
|
|
|
|
- echo "writing to $TARGET_DIR/$FN"
|
|
|
|
- mv build/feather.zip "$TARGET_DIR/$FN"
|
|
|
|
- echo "[*] written to https://build.featherwallet.org/files/mac-release/$DRONE_SOURCE_BRANCH/$FN"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: files_mac_release
|
|
|
|
host:
|
|
|
|
path: /build/feather_files/files/mac-release/
|
|
|
|
---
|
|
|
|
kind: signature
|
2020-12-09 12:02:53 +00:00
|
|
|
hmac: f16a0379280e2e89987930d635ec6fb938d67732fdaf4ddc488f2a9db64bda2c
|
2020-12-08 21:03:04 +00:00
|
|
|
|
|
|
|
...
|