Skip to content

Commit

Permalink
Add missing working-directory tag in run-eden-test action
Browse files Browse the repository at this point in the history
Since we are using `test.yml` as reusable workflow in EVE we clone
eden repository in EVE folder and it causes problems with working
directories and building and executing binaries.

So we are using `working-directory:` and `path:` tags of GitHub
actions with hard-coded `./eden` value to prevent any problems that
might occur with resuing this workflow in EVE.

Signed-off-by: Pavel Abramov <uncle.decart@gmail.com>
  • Loading branch information
uncleDecart committed Jul 31, 2023
1 parent dee1c36 commit 276827b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/run-eden-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,14 @@ runs:
- name: Collect info
if: failure()
uses: ./eden/.github/actions/collect-info
working-directory: "./eden"
- name: Collect logs
if: always()
uses: ./eden/.github/actions/publish-logs
with:
file_system: ${{ inputs.file_system }}
tpm_enabled: ${{ inputs.tpm_enabled }}
working-directory: "./eden"
- name: Clean up after test
if: always()
run: |
Expand Down

0 comments on commit 276827b

Please sign in to comment.