Skip to content

Commit

Permalink
fix: target is not in build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Nov 14, 2023
1 parent cfe6ea0 commit f7f31c9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ jobs:
name: build_${{ matrix.runner }}
retention-days: 1
path: coatjava.tar.gz
- name: publish jacoco report
if: matrix.runner == 'ubuntu-latest'
run: validation/jacoco-aggregate.sh
- uses: actions/upload-artifact@v3
if: matrix.runner == 'ubuntu-latest'
with:
name: jacoco
retention-days: 1
path: publish/

# tests
#############################################################################
Expand Down Expand Up @@ -134,14 +143,10 @@ jobs:
needs:
- build
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build_${{ needs.build.outputs.default_runner }}
- name: untar build
run: tar xzvf coatjava.tar.gz
- name: publish jacoco report
run: validation/jacoco-aggregate.sh
name: jacoco
path: publish/
- uses: actions/upload-pages-artifact@v2
with:
path: publish/
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/coatjava
/myLocalMvnRepo
target
/publish

*.class
*lundfiles*.dat
Expand Down Expand Up @@ -36,4 +37,4 @@ hs_err_pid*
*.evio

bin/evio2hipotest
export.sh
export.sh

0 comments on commit f7f31c9

Please sign in to comment.