Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel86 authored Sep 8, 2024
1 parent 471ecb0 commit 0176092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ jobs:
cmake ../src/
make 2> >(tee "make-output.txt")
- name: Post PR comment for warnings/errors
if: always()
if: ${{github.event_name == 'pull_request'}}
uses: JacobDomagala/CompileResult@master
with:
comment_title: Make output
compile_result_file: ${{runner.workspace}}/build/output.txt
compile_result_file: ${{runner.workspace}}/build/make-output.txt
- name: Create debian package
if: ${{github.event_name == 'push' || github.event_name == 'release'}}
shell: bash
run: |
cd knowrob/build
cpack
- name: Run unit tests
if: github.event_name == 'push' || github.event_name == 'pull_request'
if: ${{github.event_name == 'push' || github.event_name == 'pull_request'}}
shell: bash
run: |
sudo systemctl start mongod
Expand Down

0 comments on commit 0176092

Please sign in to comment.