Dockerfile support for Ubuntu 24.10 Oracular + Updated Instructions for running ops agent integration tests against the new distro #17055
Workflow file for this run
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
# Copyright 2022 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
on: [push, pull_request] | |
name: Test | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{matrix.os}} | |
steps: | |
- run: | | |
git config --global core.symlinks true | |
git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.x | |
cache: true | |
- run: | | |
go install golang.org/x/tools/cmd/goimports@latest | |
- if: ${{ runner.os == 'Linux' }} | |
run: if [ $(goimports -l .) ]; then goimports -d .; echo 'Failed the goimports format check. Please format the code using "goimports -w ."'; exit 1; fi | |
- run: go test -mod=mod -coverpkg="./..." -coverprofile=covprofile ./... | |
- id: 'set-coverage-vars' | |
if: ${{ runner.os == 'Linux' && github.event_name == 'push' && github.repository == 'GoogleCloudPlatform/ops-agent' && github.ref == 'refs/heads/master' }} | |
name: 'Set Coverage Env Vars' | |
run: echo "ABS_DIR=ng3-customer-telemetry-coverage/absolute/cloud-ops-agent/${{ github.run_id }}" >> "$GITHUB_ENV" | |
- id: 'prepare-coverage-data' | |
if: ${{ runner.os == 'Linux' && github.event_name == 'push' && github.repository == 'GoogleCloudPlatform/ops-agent' && github.ref == 'refs/heads/master' }} | |
name: 'Prepare Coverage Data' | |
run: | | |
mkdir -p "${{ env.ABS_DIR }}" | |
echo '{"host":"github","project":"cloud-ops-agent","trace_type":"GO_COV","commit_id":"${{ github.sha }}","ref":"HEAD","source":"${{ github.server_url }}/${{ github.repository }}","owner":"stackdriver-instrumentation-dev","bug_component":"931151"}' > ${{ env.ABS_DIR }}/metadata.json | |
cp covprofile ${{ env.ABS_DIR }}/coverage.out | |
- id: 'auth' | |
if: ${{ runner.os == 'Linux' && github.event_name == 'push' && github.repository == 'GoogleCloudPlatform/ops-agent' && github.ref == 'refs/heads/master' }} | |
name: 'Authenticate to Google Cloud' | |
uses: 'google-github-actions/auth@v1' | |
with: | |
credentials_json: '${{ secrets.build_and_test_external_credentials }}' | |
- id: 'upload-coverage-data' | |
if: ${{ runner.os == 'Linux' && github.event_name == 'push' && github.repository == 'GoogleCloudPlatform/ops-agent' && github.ref == 'refs/heads/master' }} | |
name: 'Upload Coverage Data' | |
uses: 'google-github-actions/upload-cloud-storage@v1' | |
with: | |
path: 'ng3-customer-telemetry-coverage' | |
glob: '**' | |
destination: 'ng3-metrics' | |
process_gcloudignore: false | |
- run: go test integration_test/validate_metadata_test.go | |
- run: go test integration_test/metadata/integration_metadata_test.go |