--- kind: pipeline type: docker name: electron-ozone platform: os: linux arch: amd64 workspace: path: /drone steps: - name: cache-init_electron-ozone pull: if-not-exists image: leophys/pikaur:0.2 user: root commands: - | if ! [ "$(ls -A /cache_stage/lib)" ]; then cp -r /var/lib/pacman/. /cache_stage/lib/ fi - | if ! [ "$(ls -A /cache_stage/cache)" ]; then cp -r /var/cache/pacman/. /cache_stage/cache/ fi volumes: - name: lib_electron-ozone path: /cache_stage/lib - name: cache_electron-ozone path: /cache_stage/cache - name: build_electron-ozone pull: if-not-exists image: leophys/pikaur:0.2 commands: - sudo echo -e "LIB =>\n$(ls -laR /var/lib/pacman)" - sudo echo -e "CACHE =>\n$(ls -laR /var/cache/pacman)" - sudo pacman -Sy strace - strace /usr/bin/pikaur -Sy --noconfirm electron-ozone volumes: - name: build_electron-ozone path: /build - name: lib_electron-ozone path: /var/lib/pacman2 - name: cache_electron-ozone path: /var/cache/pacman2 volumes: - name: build_electron-ozone host: path: /var/builds/archlinux/electron-ozone - name: lib_electron-ozone host: path: /var/builds/archlinux/lib/electron-ozone - name: cache_electron-ozone host: path: /var/builds/archlinux/cache/electron-ozone trigger: branch: - master event: - push - cron --- kind: pipeline type: docker name: notify_failure-electron-ozone clone: disable: true steps: - name: notify_failure pull: if-not-exists image: leophys/mailer:0.5 environment: M_SERVER_ADDRESS: from_secret: m_server_address M_USER: from_secret: m_user M_PASSWORD: from_secret: m_password M_FROM: from_secret: m_from M_TO: from_secret: m_to M_SUB: "[electron-ozone] FAILURE" M_TEXT: "Failed building electron-ozone" trigger: status: - failure depends_on: - electron-ozone --- kind: pipeline type: docker name: discord_arch_electron platform: os: linux arch: amd64 workspace: path: /drone steps: - name: cache-init_discord_arch_electron pull: if-not-exists image: leophys/pikaur:0.2 user: root commands: - | if ! [ "$(ls -A /cache_stage/lib)" ]; then cp -r /var/lib/pacman/. /cache_stage/lib/ fi - | if ! [ "$(ls -A /cache_stage/cache)" ]; then cp -r /var/cache/pacman/. /cache_stage/cache/ fi volumes: - name: lib_discord_arch_electron path: /cache_stage/lib - name: cache_discord_arch_electron path: /cache_stage/cache - name: build_discord_arch_electron pull: if-not-exists image: leophys/pikaur:0.2 commands: - /usr/bin/pikaur -Sy --noconfirm discord_arch_electron volumes: - name: build_discord_arch_electron path: /build - name: lib_discord_arch_electron path: /var/lib/pacman - name: cache_discord_arch_electron path: /var/cache/pacman volumes: - name: build_discord_arch_electron host: path: /var/builds/archlinux/discord_arch_electron - name: lib_discord_arch_electron host: path: /var/builds/archlinux/lib/discord_arch_electron - name: cache_discord_arch_electron host: path: /var/builds/archlinux/cache/discord_arch_electron trigger: branch: - master event: - push - cron --- kind: pipeline type: docker name: notify_failure-discord_arch_electron clone: disable: true steps: - name: notify_failure pull: if-not-exists image: leophys/mailer:0.5 environment: M_SERVER_ADDRESS: from_secret: m_server_address M_USER: from_secret: m_user M_PASSWORD: from_secret: m_password M_FROM: from_secret: m_from M_TO: from_secret: m_to M_SUB: "[discord_arch_electron] FAILURE" M_TEXT: "Failed building discord_arch_electron" trigger: status: - failure depends_on: - discord_arch_electron --- kind: pipeline type: docker name: notify_success clone: disable: true steps: - name: notify_success pull: if-not-exists image: leophys/mailer:0.5 environment: M_SERVER_ADDRESS: from_secret: m_server_address M_USER: from_secret: m_user M_PASSWORD: from_secret: m_password M_FROM: from_secret: m_from M_TO: from_secret: m_to M_SUB: "[archlinux] SUCCESS" M_TEXT: "Success building archlinux packages" trigger: status: - success depends_on: - electron-ozone - discord_arch_electron --- kind: signature hmac: 88f1f1cfb3a77f5993b8f413ee2eae56e2ced43083e3d3872d519918c5fa5465 ...