Skip to content

Commit

Permalink
Merge branch 'main' into sdk-span-link
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlias authored Oct 3, 2024
2 parents 3180c3b + 4ee2963 commit 5eab6e8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,20 @@ jobs:
strategy:
matrix:
k8s-version: ["v1.26.0"]
library: ["nethttp", "nethttp_custom", "gin", "databasesql", "grpc", "otelglobal", "kafka-go"]
library: ["autosdk", "nethttp", "nethttp_custom", "gin", "databasesql", "grpc", "otelglobal", "kafka-go"]
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup BATS
uses: mig4/setup-bats@v1
- name: Build sample app from script
if: ${{ hashFiles(format('internal/test/e2e/{0}/build.sh', matrix.library)) != '' }}
run: ./internal/test/e2e/${{ matrix.library }}/build.sh -t sample-app:latest
- name: Build sample app
run: |
cd internal/test/e2e/${{ matrix.library }}
docker build -t sample-app:latest .
if: ${{ hashFiles(format('internal/test/e2e/{0}/build.sh', matrix.library)) == '' }}
working-directory: ./internal/test/e2e/${{ matrix.library }}
run: docker build -t sample-app:latest .
- name: Set up Helm
uses: azure/setup-helm@v4
with:
Expand Down

0 comments on commit 5eab6e8

Please sign in to comment.