Skip to content

Commit fa79955

Browse files
authored
Adds a check for the required go version for orchestrion (#9)
1 parent 0f197b9 commit fa79955

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Execute this script in your GitLab CI's job YAML before running the tests. Pass
1616
test_node:
1717
image: node:latest
1818
script:
19-
- LANGUAGES="js" SITE="datadoghq.com" API_KEY="YOUR_API_KEY_SECRET" source <(curl -Ls https://github.com/DataDog/test-optimization-gitlab-script/releases/download/v1.2.1/script.sh)
19+
- LANGUAGES="js" SITE="datadoghq.com" API_KEY="YOUR_API_KEY_SECRET" source <(curl -Ls https://github.com/DataDog/test-optimization-gitlab-script/releases/download/v1.2.2/script.sh)
2020
- npm run test
2121
```
2222
@@ -49,7 +49,7 @@ test_node:
4949
- export DD_API_KEY="YOUR_API_KEY_SECRET"
5050
- export DD_ENV="staging-tests"
5151
- export DD_TAGS="layer:api,team:intake,key:value"
52-
- LANGUAGES="js" SITE="datad0g.com" source <(curl -Ls https://github.com/DataDog/test-optimization-gitlab-script/releases/download/v1.2.1/script.sh)
52+
- LANGUAGES="js" SITE="datad0g.com" source <(curl -Ls https://github.com/DataDog/test-optimization-gitlab-script/releases/download/v1.2.2/script.sh)
5353
- npm run test
5454
```
5555

@@ -65,7 +65,7 @@ To use this script with vitest you need to modify the NODE_OPTIONS environment v
6565
test_node_vitest:
6666
image: node:latest
6767
script:
68-
- LANGUAGES="js" SITE="datadoghq.com" API_KEY="YOUR_API_KEY_SECRET" source <(curl -Ls https://github.com/DataDog/test-optimization-gitlab-script/releases/download/v1.2.1/script.sh)
68+
- LANGUAGES="js" SITE="datadoghq.com" API_KEY="YOUR_API_KEY_SECRET" source <(curl -Ls https://github.com/DataDog/test-optimization-gitlab-script/releases/download/v1.2.2/script.sh)
6969
- export NODE_OPTIONS="$NODE_OPTIONS --import $DD_TRACE_ESM_IMPORT"
7070
- npm run test
7171
```

script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ fi
7070

7171
export DD_CIVISIBILITY_AUTO_INSTRUMENTATION_PROVIDER="gitlab"
7272

73-
installation_script_url="https://install.datadoghq.com/scripts/install_test_visibility_v7.sh"
74-
installation_script_checksum="2554982c134b97848dc1695651b66ed54633d2a0d98b665a4a452ad916cf6fde"
73+
installation_script_url="https://install.datadoghq.com/scripts/install_test_visibility_v8.sh"
74+
installation_script_checksum="955c3aa6f16073950900e99c6271d42481b35b935a8c958debf0663bd3fa86ed"
7575
script_filepath="install_test_visibility.sh"
7676

7777
if command -v curl >/dev/null 2>&1; then

0 commit comments

Comments
 (0)