Initial commit.
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2024-05-04 13:18:37 +05:00
commit 8b945c8f90
16 changed files with 273 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/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