[receiver/vcenter] Adds Suspended VM Counts to `vcenter.cluster.vm.co… #1
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: build-and-test-arm | ||
on: | ||
push: | ||
branches: [ main ] | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+*' | ||
merge_group: | ||
pull_request: | ||
env: | ||
TEST_RESULTS: testbed/tests/results/junit/results.xml | ||
# Make sure to exit early if cache segment download times out after 2 minutes. | ||
# We limit cache download as a whole to 5 minutes. | ||
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 | ||
GOPROXY: https://goproxy1.cncf.selfactuated.dev,direct | ||
# Do not cancel this workflow on main. See https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/16616 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
jobs: | ||
arm-unittest-matrix: | ||
Check failure on line 22 in .github/workflows/build-and-test-actuated.yml GitHub Actions / build-and-test-armInvalid workflow file
|
||
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
group: | ||
- receiver-0 | ||
- receiver-1 | ||
- receiver-2 | ||
- receiver-3 | ||
- processor-0 | ||
- processor-1 | ||
- exporter-0 | ||
- exporter-1 | ||
- exporter-2 | ||
- exporter-3 | ||
- extension | ||
- connector | ||
- internal | ||
- pkg | ||
- cmd-0 | ||
- cmd-1 | ||
- other | ||
runs-on: actuated-arm64-4cpu-4gb | ||
needs: [setup-environment] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22.2" | ||
cache: false | ||
- name: Cache Go | ||
id: go-cache | ||
timeout-minutes: 5 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/bin | ||
~/go/pkg/mod | ||
key: go-build-cache-${{ runner.os }}-${{ matrix.group }}-go-${{ hashFiles('**/go.sum') }} | ||
- name: Run Unit Tests | ||
run: make -j2 gotest GROUP=${{ matrix.group }} | ||
arm-unittest: | ||
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }} | ||
runs-on: actuated-arm64-4cpu-4gb | ||
needs: [setup-environment, unittest-matrix] | ||
steps: | ||
- name: Print result | ||
run: echo ${{ needs.arm-unittest-matrix.result }} | ||
- name: Interpret result | ||
run: | | ||
if [[ success == ${{ needs.arm-unittest-matrix.result }} ]] | ||
then | ||
echo "All matrix jobs passed!" | ||
else | ||
echo "One or more matrix jobs failed." | ||
false | ||
fi |