Skip to content

Commit

Permalink
Force CGO_ENABLED
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainMuller committed Jan 20, 2025
1 parent c5fc0a1 commit cca226f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/orchestrion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ jobs:
mode: GOFLAGS
name: Integration Test (${{ matrix.runs-on }} | ${{ matrix.go-version }} | ${{ matrix.mode }})
runs-on: ${{ matrix.runs-on == 'ubuntu' && fromJson('{"labels":"ubuntu-16-core-latest","group":"Large Runner Shared Public"}') || (matrix.runs-on == 'windows' && fromJson('{"labels":"windows-shared-8core","group":"LARGE WINDOWS SHARED"}')) || format('{0}-latest', matrix.runs-on) }}
env:
# Some dependencies (i.e: kafka clients) require CGO in order to build.
CGO_ENABLED: 1
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -163,6 +166,7 @@ jobs:
shell: bash
run: |-
echo "Working directory: ${PWD}"
orchestrion version
case "${MODE}" in
"DRIVER")
Expand Down Expand Up @@ -191,8 +195,6 @@ jobs:
DD_ORCHESTRION_IS_GOMOD_VERSION: true
# Ryuk is problematic with concurrent executions, and unnecessary in ephemeral environments like GHA.
TESTCONTAINERS_RYUK_DISABLED: true
# TODO: Remove
ORCHESTRION_LOG_LEVEL: debug

# If in workflow_call, we collected coverage data we need to upload
- name: Consolidate coverage report
Expand Down
4 changes: 0 additions & 4 deletions internal/orchestrion/_integration/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -683,10 +683,6 @@ github.com/DataDog/gostackparse v0.7.0 h1:i7dLkXHvYzHV308hnkvVGDL3BR4FWl7IsXNPz/
github.com/DataDog/gostackparse v0.7.0/go.mod h1:lTfqcJKqS9KnXQGnyQMCugq3u1FP6UZMfWR0aitKFMM=
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.22.0 h1:yfk2cF8Bx98fSFpGrehEHh1FRqewfxcCTAbUDt5r3F8=
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.22.0/go.mod h1:9qzpnBSxSOnKzbF/uHket3SSlQihQHix/ZRC2nZUUYQ=
github.com/DataDog/orchestrion v1.0.3-rc.1.0.20250114094042-8616c1bcb819 h1:VQ97Zi8Vz/vRoOoujCao4CBMI9/2Uir6vq79OnGWrak=
github.com/DataDog/orchestrion v1.0.3-rc.1.0.20250114094042-8616c1bcb819/go.mod h1:gaLp2xwAzjGLWKrz+sUPri+3kVgo4fI3e35geUHOGqk=
github.com/DataDog/orchestrion v1.0.3-rc.1.0.20250120133741-ecc6312c627d h1:9MuML594UApJFyNvee7n3A5h10EZJd7ac05SNmqQyFg=
github.com/DataDog/orchestrion v1.0.3-rc.1.0.20250120133741-ecc6312c627d/go.mod h1:sC0SM1AIkyex4/FZL7niB7j8hCnPza83eYOe9HPBFds=
github.com/DataDog/orchestrion v1.0.3-rc.1.0.20250120134012-8c2a6e2c1d70 h1:hmG/mImXp4R/0JzdMPw0wTv8gg/nFCSfRF5TJladt0k=
github.com/DataDog/orchestrion v1.0.3-rc.1.0.20250120134012-8c2a6e2c1d70/go.mod h1:sC0SM1AIkyex4/FZL7niB7j8hCnPza83eYOe9HPBFds=
github.com/DataDog/sketches-go v1.4.6 h1:acd5fb+QdUzGrosfNLwrIhqyrbMORpvBy7mE+vHlT3I=
Expand Down

0 comments on commit cca226f

Please sign in to comment.