Skip to content

develop-pr-regression.yml: Add setting up osfv-test-data #944

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/develop-pr-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -41,6 +41,16 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt

# Depends on manually installing git-annex package on the local runner
- name: Set up osfv-test-data
run: |
pushd osfv-test-data
git config user.email "you@example.com"
git config user.name "Your Name"
git annex get * || true
./setup.sh
popd

- name: Execute robot command
run: |
scripts/ci/develop_pr_auto_regression.sh
Expand Down
1 change: 1 addition & 0 deletions dasharo-compatibility/usb-hid-and-msc-support.robot
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Suite Teardown Run Keyword
... Log Out And Close Connection

Default Tags automated
# test


*** Test Cases ***
Expand Down
Loading