Try to fix github env variables
This commit is contained in:
parent
52a42bc1d7
commit
d100841bd9
|
@ -15,9 +15,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install inotify-tools acl
|
sudo apt-get install inotify-tools acl
|
||||||
- name: Execute tests and generate coverage report
|
- name: Execute tests and generate coverage report
|
||||||
|
env:
|
||||||
|
RUNNING_ON_GITHUB_ACTIONS=true
|
||||||
|
SSH_PORT=22
|
||||||
run: |
|
run: |
|
||||||
export RUNNING_ON_GITHUB_ACTIONS=true
|
echo "Running on github actions: ${RUNNING_ON_GITHUB_ACTIONS}"
|
||||||
export SSH_PORT=22
|
echo "Running on ssh port ${SSH_PORT}"
|
||||||
sudo bash ./dev/tests/run_tests.sh
|
sudo bash ./dev/tests/run_tests.sh
|
||||||
- name: Upload Coverage to Codecov
|
- name: Upload Coverage to Codecov
|
||||||
uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v1
|
||||||
|
|
Loading…
Reference in New Issue