Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyredondo committed Nov 20, 2024
1 parent b41ca9d commit 7dbc3f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
run: go build ./...

- name: Install orchestrion
run: go install github.com/DataDog/orchestrion@latest
run: |
go install github.com/DataDog/orchestrion@latest
orchestrion pin
- name: Test
run: orchestrion go test -v $(go list ./... | grep -v /integration-tests) # We do not run integration-tests here because they require more tooling (Pulumi, invoke, ..). They will be run in a dedicated job
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ integration-testing:
- ssh-add $E2E_PRIVATE_KEY_PATH
- pip install -r requirements.txt
- go install github.com/DataDog/orchestrion@latest
- orchestrion pin
script:
- |
if [ ! -f ./dist/main ]; then
Expand Down

0 comments on commit 7dbc3f0

Please sign in to comment.