Skip to content

Commit

Permalink
run tracetesting on successful build (#1278)
Browse files Browse the repository at this point in the history
* add CI

* fix lint

* fix name

* fix run

* change calling behavior

* add job names

* change secret

* inherit secrets

* change to pull_request_target

* remove secret inheritance

* change to run on pr merge
  • Loading branch information
austinlparker authored Nov 28, 2023
1 parent 6d7b978 commit c9750dc
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
name: Integration Tests

on:
pull_request:
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.GITHUB_TOKEN }}
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: run tracetesting
run: |
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

0 comments on commit c9750dc

Please sign in to comment.