Skip to content
This repository has been archived by the owner on Feb 22, 2025. It is now read-only.

Commit

Permalink
[CI] workflow fix (#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachmatt authored Feb 12, 2024
1 parent b8f192a commit 3cfbb34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
run: |
docker run --rm \
--mount type=bind,source="${GITHUB_WORKSPACE}",target=/project \
--env NugetPackageDirectory=/project/$(relativeNugetPackageDirectory) \
--env NugetPackageDirectory=/project/${relativeNugetPackageDirectory} \
--env tracerHome=/project/${relativeTracerHome} \
--env artifacts=/project/${relativeArtifacts} \
--env SIGNALFX_CLR_ENABLE_NGEN=${SIGNALFX_CLR_ENABLE_NGEN} \
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
run: |
docker run --rm \
--mount type=bind,source="${GITHUB_WORKSPACE}",target=/project \
--env NugetPackageDirectory=/project/$(relativeNugetPackageDirectory) \
--env NugetPackageDirectory=/project/${relativeNugetPackageDirectory} \
--env tracerHome=/project/${relativeTracerHome} \
--env artifacts=/project/${relativeArtifacts} \
--env SIGNALFX_CLR_ENABLE_NGEN=${SIGNALFX_CLR_ENABLE_NGEN} \
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
run: |
docker run --rm \
--mount type=bind,source="${GITHUB_WORKSPACE}",target=/project \
--env NugetPackageDirectory=/project/$(relativeNugetPackageDirectory) \
--env NugetPackageDirectory=/project/${relativeNugetPackageDirectory} \
--env tracerHome=/project/${relativeTracerHome} \
--env artifacts=/project/${relativeArtifacts} \
--env SIGNALFX_CLR_ENABLE_NGEN=${SIGNALFX_CLR_ENABLE_NGEN} \
Expand Down Expand Up @@ -424,12 +424,12 @@ jobs:
run: |
docker run --rm \
--mount type=bind,source="${GITHUB_WORKSPACE}",target=/project \
--env NugetPackageDirectory=/project/$(relativeNugetPackageDirectory) \
--env NugetPackageDirectory=/project/${relativeNugetPackageDirectory} \
--env tracerHome=/project/${relativeTracerHome} \
--env artifacts=/project/${relativeArtifacts} \
--env SIGNALFX_CLR_ENABLE_NGEN=${SIGNALFX_CLR_ENABLE_NGEN} \
dd-trace-dotnet/${{ matrix.base-image }}-builder \
dotnet /build/bin/Debug/_build.dll Info Clean BuildTracerHome BuildLinuxIntegrationTests -Framework ${{ matrix.framework }}
/bin/sh -c 'git config --global --add safe.directory /project && ./tracer/build.sh Info Clean BuildTracerHome BuildLinuxIntegrationTests -Framework ${{ matrix.framework }}'
- name: Build dependencies
run: docker-compose build --build-arg SERVERLESS_ARTIFACTS_PATH=.${relativeTracerHome} StartDependencies
- name: Start dependencies
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ services:
args:
- DOTNETSDK_VERSION=${dotnetCoreSdkLatestVersion:-7.0.101}
image: dd-trace-dotnet/${baseImage:-centos7}-tester
command: dotnet /build/bin/Debug/_build.dll RunLinuxIntegrationTests --framework ${framework:-netcoreapp3.1} --code-coverage
command: /bin/sh -c './tracer/build.sh RunLinuxIntegrationTests --framework ${framework:-netcoreapp3.1} --code-coverage'
volumes:
- ./:/project
environment:
Expand Down

0 comments on commit 3cfbb34

Please sign in to comment.