-
Notifications
You must be signed in to change notification settings - Fork 16
57 lines (49 loc) · 1.63 KB
/
pr_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Python Instrumentation PR Build
on:
pull_request:
branches:
- main
- main_workflow
- "release/v*"
env:
AWS_DEFAULT_REGION: us-east-1
TEST_TAG: 637423224110.dkr.ecr.us-east-1.amazonaws.com/eks/observability/adot-autoinstrumentation-python:test
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
tox-environment: ["spellcheck", "lint"]
steps:
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install libsnappy-dev
if: ${{ matrix.tox-environment == 'lint' }}
run: |
if ( test "${{ matrix.os }}" == "ubuntu-latest" ); then
sudo apt-get update && sudo apt-get install -y libsnappy-dev
elif ( test "${{ matrix.os }}" == "macos-latest" ); then
brew install snappy
elif ( test "${{ matrix.os }}" == "windows-latest" ); then
choco install snappy
fi
- name: Build Wheel and Image Files
uses: ./.github/actions/artifacts_build
with:
aws-region: ${{ env.AWS_DEFAULT_REGION }}
image_uri_with_tag: ${{ env.TEST_TAG }}
image_registry: 637423224110.dkr.ecr.us-east-1.amazonaws.com
snapshot-ecr-role: ${{ secrets.AWS_ASSUME_ROLE_ARN }}
push_image: false
load_image: true
- name: run spell check tox
run: tox -e ${{ matrix.tox-environment }}
# TODO: Add Contract test.