11 lines
255 B
Bash
11 lines
255 B
Bash
|
#!/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
|