Skip to content

Bump go.opentelemetry.io/collector from 0.54.0 to 0.101.0 in /internal/coreinternal #10354

Bump go.opentelemetry.io/collector from 0.54.0 to 0.101.0 in /internal/coreinternal

Bump go.opentelemetry.io/collector from 0.54.0 to 0.101.0 in /internal/coreinternal #10354

name: build-and-test-windows
on:
push:
branches: [ main ]
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
pull_request:
env:
TEST_RESULTS: testbed/tests/results/junit/results.xml
jobs:
windows-unittest-matrix:
strategy:
matrix:
group:
- receiver-0
- receiver-1
- processor
- exporter
- extension
- internal
- other
runs-on: windows-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- if: matrix.group == 'receiver-0'
name: install IIS
run: Install-WindowsFeature -name Web-Server -IncludeManagementTools
- if: matrix.group == 'receiver-0'
name: Install Active Directory DS
run: Install-WindowsFeature -name AD-Domain-Services -IncludeManagementTools
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: Cache Go
uses: actions/cache@v3
with:
path: |
~\go\pkg\mod
~\AppData\Local\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Run Unit tests
run: make gotest GROUP=${{ matrix.group }}
windows-unittest:
runs-on: windows-latest
needs: [windows-unittest-matrix]
steps:
- name: Unit Tests Complete
run: echo "Windows unit tests complete"