Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
privat committed Jun 24, 2024
1 parent d48b5ac commit 2f56ac7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@ jobs:
with:
files: "tests/*.xml"
comment_mode: off
- uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: 'tests/*.xml'

tests-full:
runs-on: ubuntu-latest
Expand All @@ -89,6 +85,11 @@ jobs:
with:
path: 'tests/out'
name: tests-full-res
- uses: EnricoMi/publish-unit-test-result-action@v2
if: success() || failure()
with:
files: "tests/*.xml"
comment_mode: off

nitunit-some:
runs-on: ubuntu-latest
Expand All @@ -106,6 +107,11 @@ jobs:
with:
path: '*.xml'
name: nitunit-some
- uses: EnricoMi/publish-unit-test-result-action@v2
if: success() || failure()
with:
files: "*.xml"
comment_mode: off

nitunit-lib:
runs-on: ubuntu-latest
Expand All @@ -123,6 +129,11 @@ jobs:
with:
path: '*.xml'
name: nitunit-lib
- uses: EnricoMi/publish-unit-test-result-action@v2
if: success() || failure()
with:
files: "*.xml"
comment_mode: off

nitunit-src:
runs-on: ubuntu-latest
Expand All @@ -139,6 +150,11 @@ jobs:
with:
path: '*.xml'
name: nitunit-src
- uses: EnricoMi/publish-unit-test-result-action@v2
if: success() || failure()
with:
files: "*.xml"
comment_mode: off

test-contrib:
runs-on: ubuntu-latest
Expand All @@ -156,6 +172,11 @@ jobs:
with:
path: '*.xml'
name: test-contrib
- uses: EnricoMi/publish-unit-test-result-action@v2
if: success() || failure()
with:
files: "*.xml"
comment_mode: off

bootstrap-full:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions misc/jenkins/install-more.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ curl -v http://mongo:27017
install_neo4j
curl -v http://neo4j:7474
ps aux
systemctl
systemctl start mongodb neo4j
curl -v http://mongo:27017
curl -v http://neo4j:7474

0 comments on commit 2f56ac7

Please sign in to comment.