Skip to content

drone-plugins/drone-matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d20f7ea · Jan 5, 2023

History

47 Commits
Nov 25, 2020
Jan 5, 2023
Nov 25, 2020
Jan 8, 2018
Jan 5, 2023
Jan 5, 2023
Nov 25, 2020
Feb 15, 2019
Jan 5, 2023
Jan 5, 2023
Jan 5, 2023
Nov 25, 2020

Repository files navigation

drone-matrix

Build Status Gitter chat Join the discussion at https://discourse.drone.io Drone questions at https://stackoverflow.com Go Doc Go Report

Drone plugin for sending build notifications to Matrix. For the usage information and a listing of the available options please take a look at the docs.

Build

Build the binary with the following command:

export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0
export GO111MODULE=on

go build -v -a -tags netgo -o release/linux/amd64/drone-matrix

Docker

Build the Docker image with the following command:

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/Dockerfile.linux.amd64 --tag plugins/matrix .

Usage

docker run --rm \
  -e PLUGIN_ROOMID=0123456789abcdef:matrix.org \
  -e PLUGIN_USERNAME=yourbot \
  -e PLUGIN_PASSWORD=p455w0rd \
  -v $(pwd):$(pwd) \
  -w $(pwd) \
  plugins/matrix