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
|
|
|
|
- name: files_linux_release
|
|
|
|
path: /files
|
|
|
|
commands:
|
|
|
|
- git config --global url."http://gitea:3000/tor/".insteadOf https://git.torproject.org/
|
|
|
|
- git config --global url."http://gitea:3000/".insteadOf https://github.com/
|
|
|
|
- git submodule update --init --depth 120 monero
|
|
|
|
- git submodule update --init --depth 120 --recursive monero
|
2020-10-17 21:14:56 +00:00
|
|
|
- TOR="/usr/local/tor/bin/tor" XMRIG="/xmrig/xmrig" make -j6 release-static
|
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
|
|
|
|
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"
|
|
|
|
- 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"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: ccache_linux_release
|
|
|
|
host:
|
|
|
|
path: /var/drone/ccache_linux_release/
|
|
|
|
- name: files_linux_release
|
|
|
|
host:
|
2020-10-17 21:14:56 +00:00
|
|
|
path: /build/feather_files/files/linux-release/
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: linux-release-appimage
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: feather:appimage
|
|
|
|
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 BRANCH="$DRONE_SOURCE_BRANCH"
|
|
|
|
- bash ./contrib/build-appimage.sh
|
|
|
|
- name: deploy
|
|
|
|
image: feather:appimage
|
|
|
|
volumes:
|
|
|
|
- name: files_linux_appimage
|
|
|
|
path: /files
|
|
|
|
commands:
|
|
|
|
- export FN="feather-`git rev-parse --short HEAD`.AppImage"
|
|
|
|
- export TARGET_DIR="/files/$DRONE_SOURCE_BRANCH"
|
|
|
|
- mkdir -p "$TARGET_DIR"
|
|
|
|
- echo "writing to $TARGET_DIR/$FN"
|
|
|
|
- mv "Feather-1.0-x86_64.AppImage" "$TARGET_DIR/$FN"
|
|
|
|
- echo "[*] written to https://build.featherwallet.org/files/linux-release-appimage/$DRONE_SOURCE_BRANCH/$FN"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: files_linux_appimage
|
|
|
|
host:
|
2020-10-17 21:14:56 +00:00
|
|
|
path: /build/feather_files/files/linux-release-appimage/
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: windows-mxe-release
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: feather:win
|
|
|
|
volumes:
|
|
|
|
- name: ccache_win_release
|
|
|
|
path: /root/.ccache
|
|
|
|
- name: files_win_release
|
|
|
|
path: /files
|
|
|
|
commands:
|
|
|
|
- git config --global url."http://gitea:3000/tor/".insteadOf https://git.torproject.org/
|
|
|
|
- git config --global url."http://gitea:3000/".insteadOf https://github.com/
|
|
|
|
- git submodule update --init --depth 120 monero
|
|
|
|
- git submodule update --init --depth 120 --recursive monero
|
2020-10-17 21:14:56 +00:00
|
|
|
- PATH="/mxe/usr/bin/:$PATH" TOR="/mxe/usr/x86_64-w64-mingw32.static/bin/tor.exe" XMRIG="/xmrig/xmrig.exe" make -j6 windows-mxe-release
|
2020-10-07 10:36:04 +00:00
|
|
|
environment:
|
|
|
|
CMAKEFLAGS_EXTRA: -DFETCH_DEPS=Off
|
|
|
|
- name: deploy
|
|
|
|
image: feather:win
|
|
|
|
volumes:
|
|
|
|
- name: ccache_win_release
|
|
|
|
path: /root/.ccache
|
|
|
|
- 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"
|
|
|
|
- zip -j "$TARGET_DIR/$FN" build/feather.log build/bin/feather.exe
|
|
|
|
- echo "[*] written to https://build.featherwallet.org/files/windows-mxe-release/$DRONE_SOURCE_BRANCH/$FN"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: ccache_win_release
|
|
|
|
host:
|
|
|
|
path: /var/drone/ccache_win_release/
|
|
|
|
- name: files_win_release
|
|
|
|
host:
|
2020-10-17 21:14:56 +00:00
|
|
|
path: /build/feather_files/files/windows-mxe-release/
|
2020-10-07 10:36: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
|
|
|
|
- scp -P22 utils/build_macos.sh administrator@steve.jobs.xmr.pm:build_macos.sh
|
|
|
|
- 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:
|
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"
|
|
|
|
- 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:
|
2020-10-17 21:14:56 +00:00
|
|
|
path: /build/feather_files/files/mac-release/
|
2020-10-10 17:05:19 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2020-10-17 21:14:56 +00:00
|
|
|
hmac: 527d334190a8a824b3b781a05ae4c7d87f4fa2bc37ebc53a96db91f925fa4a52
|
2020-10-10 17:05:19 +00:00
|
|
|
|
|
|
|
...
|