We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e34dfb8 commit d83c0ecCopy full SHA for d83c0ec
.gitignore
@@ -1,3 +1,4 @@
1
process_exporter
2
prcexpintdum
3
dummyfile
4
+/testing
build.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+set -e
+set -x
+go build -o process_exporter github.com/setlog/process_exporter/cmd/exporter
test.sh
@@ -0,0 +1,9 @@
+go test -v ./...
5
+go build -o testing/integration_test github.com/setlog/process_exporter/integration_test
6
+cd testing
7
+./integration_test
8
+cd ..
9
+rm -rf testing
0 commit comments