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.
2 parents e3151aa + 0a8c025 commit cbc5b67Copy full SHA for cbc5b67
.github/workflows/ci-test.yml
@@ -51,3 +51,9 @@ jobs:
51
with:
52
name: test-log-raw-tr-wi_ext-${{ github.sha }}
53
path: build/bin/raw_tr_wi_ext.csv
54
+
55
+ - name: upload-artifact
56
+ uses: actions/upload-artifact@v2
57
+ with:
58
+ name: pcm-csv-${{ github.sha }}
59
+ path: build/bin/pcm.csv
tests/test.sh
@@ -22,6 +22,12 @@ if [ "$?" -ne "0" ]; then
22
exit 1
23
fi
24
25
+./pcm -r 0.1 -csv=pcm.csv -- sleep 5
26
+if [ "$?" -ne "0" ]; then
27
+ echo "Error in pcm"
28
+ exit 1
29
+fi
30
31
./pcm-memory -- sleep 1
32
if [ "$?" -ne "0" ]; then
33
echo "Error in pcm-memory"
0 commit comments