Skip to content

Commit a1a75b6

Browse files
authored
Merge branch 'main' into mk/sdk-1801/fix-sdk-meta-names
2 parents 5022ffc + 3de0b30 commit a1a75b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/server-node.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,16 @@ jobs:
3838
- name: Launch the test service in the background
3939
run: yarn contract-test-service 2>&1 &
4040
- name: Clone and run contract tests from feat/fdv2 branch
41+
# NOTE: This is a temporary workaround to run the contract tests from the feat/fdv2 branch.
42+
# The commit hash is a few commits before the HEAD of the feat/fdv2 branch. We do this because
43+
# the HEAD of the feat/fdv2 branch requires the synchronizers be passed as a list which is not
44+
# implemented yet. (SDK-1798)
4145
run: |
4246
mkdir -p /tmp/sdk-test-harness
4347
git clone https://github.com/launchdarkly/sdk-test-harness.git /tmp/sdk-test-harness
4448
cp ./contract-tests/testharness-suppressions-fdv2.txt /tmp/sdk-test-harness/testharness-suppressions-fdv2.txt
4549
cd /tmp/sdk-test-harness
46-
git checkout feat/fdv2
50+
git checkout de833af990da23a89b66c5366809b5be8c27e3f8
4751
go build -o test-harness .
4852
./test-harness -url http://localhost:8000 -debug --skip-from=testharness-suppressions-fdv2.txt
4953
env:

0 commit comments

Comments
 (0)