Splunk OTEl .NET - update to 1.5.0 (#149) #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Integration" | |
on: | |
push: | |
# run on pushes to main | |
branches: | |
- main | |
pull_request: | |
# run on pull requests targeting main | |
branches: | |
- main | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Deploy From Source | |
uses: hiberbee/[email protected] | |
with: | |
command: run | |
- name: Wait For Pods | |
timeout-minutes: 20 | |
run: | | |
set -x | |
kubectl wait --for=condition=available --timeout=10m deployment/adservice | |
kubectl wait --for=condition=available --timeout=10m deployment/cartservice | |
kubectl wait --for=condition=available --timeout=10m deployment/checkoutservice | |
kubectl wait --for=condition=available --timeout=10m deployment/currencyservice | |
kubectl wait --for=condition=available --timeout=10m deployment/emailservice | |
kubectl wait --for=condition=available --timeout=10m deployment/frontend | |
kubectl wait --for=condition=available --timeout=10m deployment/loadgenerator | |
kubectl wait --for=condition=available --timeout=10m deployment/paymentservice | |
kubectl wait --for=condition=available --timeout=10m deployment/productcatalogservice | |
kubectl wait --for=condition=available --timeout=10m deployment/recommendationservice | |
kubectl wait --for=condition=available --timeout=10m deployment/shippingservice |