go-toolbox/scripts/workers/go-junit-report.sh
Stanislav N. aka pztrn 8b945c8f90
All checks were successful
continuous-integration/drone Build is passing
Initial commit.
2024-05-04 13:18:37 +05:00

11 lines
255 B
Bash
Executable File

#!/bin/bash
go_junit_report_version=2.1.0
cd /tmp
git clone https://github.com/jstemmer/go-junit-report.git
cd go-junit-report || exit 1
git checkout "v${go_junit_report_version}"
go build -o /usr/local/bin/go-junit-report .
rm -rf /tmp/go-junit-report