From a27c20841a076dc7806c1479ec581949102453d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Go=C5=82a=C5=9B?= Date: Thu, 17 Jul 2025 08:05:04 +0200 Subject: [PATCH 1/4] develop-pr-regression.yml: Add setting up osfv-test-data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Filip Gołaś --- .github/workflows/develop-pr-regression.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/develop-pr-regression.yml b/.github/workflows/develop-pr-regression.yml index 8e65ef2265..e4c5d1d8fa 100644 --- a/.github/workflows/develop-pr-regression.yml +++ b/.github/workflows/develop-pr-regression.yml @@ -41,6 +41,16 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt + - name: Set up osfv-test-data + run: | + sudo apt-get install git-annex + pushd osfv-test-data + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + git annex pull || true + ./setup.sh + popd + - name: Execute robot command run: | scripts/ci/develop_pr_auto_regression.sh From e6a79d4c56b74ba1a5c39763cd4e2cbaa73ab7bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Go=C5=82a=C5=9B?= Date: Thu, 17 Jul 2025 08:11:14 +0200 Subject: [PATCH 2/4] [REMOVE ME] trigger CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Filip Gołaś --- dasharo-compatibility/usb-hid-and-msc-support.robot | 1 + 1 file changed, 1 insertion(+) diff --git a/dasharo-compatibility/usb-hid-and-msc-support.robot b/dasharo-compatibility/usb-hid-and-msc-support.robot index df3ade797e..accae178f4 100644 --- a/dasharo-compatibility/usb-hid-and-msc-support.robot +++ b/dasharo-compatibility/usb-hid-and-msc-support.robot @@ -22,6 +22,7 @@ Suite Teardown Run Keyword ... Log Out And Close Connection Default Tags automated +# test *** Test Cases *** From c6408899c2094570f94a9dab20532ae4134351ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Go=C5=82a=C5=9B?= Date: Thu, 17 Jul 2025 08:20:59 +0200 Subject: [PATCH 3/4] develop-pr-regression.yml: assume installed git annex MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Filip Gołaś --- .github/workflows/develop-pr-regression.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/develop-pr-regression.yml b/.github/workflows/develop-pr-regression.yml index e4c5d1d8fa..89b78c9dfe 100644 --- a/.github/workflows/develop-pr-regression.yml +++ b/.github/workflows/develop-pr-regression.yml @@ -41,9 +41,9 @@ 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: | - sudo apt-get install git-annex pushd osfv-test-data git config --global user.email "you@example.com" git config --global user.name "Your Name" From 82512f4caa73646749a52bae379b3b27561fa54b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Go=C5=82a=C5=9B?= Date: Thu, 17 Jul 2025 08:50:32 +0200 Subject: [PATCH 4/4] use get MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Filip Gołaś --- .github/workflows/develop-pr-regression.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/develop-pr-regression.yml b/.github/workflows/develop-pr-regression.yml index 89b78c9dfe..1e10c04bf4 100644 --- a/.github/workflows/develop-pr-regression.yml +++ b/.github/workflows/develop-pr-regression.yml @@ -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 @@ -45,9 +45,9 @@ jobs: - name: Set up osfv-test-data run: | pushd osfv-test-data - git config --global user.email "you@example.com" - git config --global user.name "Your Name" - git annex pull || true + git config user.email "you@example.com" + git config user.name "Your Name" + git annex get * || true ./setup.sh popd