Skip to content

Commit 789048a

Browse files
authored
Add crashtracker support for the sidecar (#3453)
Signed-off-by: Bob Weinand <[email protected]>
1 parent 50ce39c commit 789048a

File tree

10 files changed

+153
-84
lines changed

10 files changed

+153
-84
lines changed

.gitlab/generate-package.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,9 +489,11 @@
489489
ABI_NO: "<?= $abi_no ?>"
490490
PHP_VERSION: "<?= $major_minor ?>"
491491
GIT_STRATEGY: clone
492-
GIT_CONFIG_COUNT: 1
492+
GIT_CONFIG_COUNT: 2
493493
GIT_CONFIG_KEY_0: core.longpaths
494494
GIT_CONFIG_VALUE_0: true
495+
GIT_CONFIG_KEY_1: core.symlinks
496+
GIT_CONFIG_VALUE_1: true
495497
CONTAINER_NAME: ${CI_JOB_NAME_SLUG}-${CI_JOB_ID}
496498
script: |
497499
# Make sure we actually fail if a command fails
@@ -1054,9 +1056,11 @@
10541056
stage: verify
10551057
tags: [ "windows-v2:2019"]
10561058
variables:
1057-
GIT_CONFIG_COUNT: 1
1059+
GIT_CONFIG_COUNT: 2
10581060
GIT_CONFIG_KEY_0: core.longpaths
10591061
GIT_CONFIG_VALUE_0: true
1062+
GIT_CONFIG_KEY_1: core.symlinks
1063+
GIT_CONFIG_VALUE_1: true
10601064
needs:
10611065
- job: "package extension windows"
10621066
artifacts: true

.gitlab/generate-tracer.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,11 @@ function before_script_steps() {
116116
- PHP_MAJOR_MINOR: <?= json_encode($windows_minor_major_targets) ?>
117117

118118
variables:
119-
GIT_CONFIG_COUNT: 1
119+
GIT_CONFIG_COUNT: 2
120120
GIT_CONFIG_KEY_0: core.longpaths
121121
GIT_CONFIG_VALUE_0: true
122+
GIT_CONFIG_KEY_1: core.symlinks
123+
GIT_CONFIG_VALUE_1: true
122124
CONTAINER_NAME: $CI_JOB_NAME_SLUG
123125
GIT_STRATEGY: clone
124126
IMAGE: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_windows"

0 commit comments

Comments
 (0)