Skip to content

Commit

Permalink
Merge pull request #168 from noskill/ci
Browse files Browse the repository at this point in the history
save all logs and observations as build artifacts
  • Loading branch information
noskill authored Aug 15, 2023
2 parents bc51faa + 3d390ca commit 69dbdc7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,24 @@ jobs:
ps a|grep [j]ava &&
conda activate py31 && cd $GITHUB_WORKSPACE/tests/vereya &&
python run_tests.py
- name: save java logs
if: always()
uses: actions/upload-artifact@v3
with:
name: JavaLogs
path: Vereya/logs/app.log
- name: save python logs
if: always()
uses: actions/upload-artifact@v3
with:
name: PythonLog
path: tests/vereya/app.log
- name: save test observations
uses: actions/upload-artifact@v3
with:
name: TestObservations
path: tests/vereya/observations/observations.txt
- name: remove lock
if: always()
run: rm -f /tmp/minecraft-test-lock

0 comments on commit 69dbdc7

Please sign in to comment.