Stanislav N. aka pztrn
8b945c8f90
All checks were successful
continuous-integration/drone Build is passing
11 lines
255 B
Bash
Executable File
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
|