Stac 0 rebuild wolverminion images #73
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 The OpenTelemetry Authors | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Integration Tests | |
on: | |
pull_request_target: | |
branches: | |
- main | |
types: [closed] | |
jobs: | |
build_runner: | |
runs-on: ubuntu-latest | |
name: "Build Runner" | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: metal-runner-action | |
uses: equinix-labs/[email protected] | |
with: | |
github_token: ${{ secrets.GH_CI_SECRET }} | |
metal_auth_token: ${{ secrets.METAL_AUTH_TOKEN }} | |
metal_project_id: ${{ secrets.METAL_PROJECT_ID }} | |
metro: "da" | |
plan: "c3.small.x86" | |
os: "ubuntu_20_04" | |
run_tests: | |
needs: build_runner | |
runs-on: self-hosted | |
name: "Run CI" | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: install docker | |
run: | | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sudo sh get-docker.sh | |
- name: run tracetesting | |
run: | | |
make build && make run-tracetesting | |
destroy: | |
needs: [build_runner, run_tests] | |
runs-on: ubuntu-latest | |
name: "Cleanup" | |
steps: | |
- name: metal-sweeper-action | |
uses: equinix-labs/[email protected] | |
with: | |
authToken: ${{ secrets.METAL_AUTH_TOKEN }} | |
projectID: ${{ secrets.METAL_PROJECT_ID }} | |
keepProject: true |