.github/workflows/tshark.yml #726
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
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/Dockerfile.tshark" | |
- ".github/workflows/tshark.yml" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/Dockerfile.tshark" | |
- ".github/workflows/tshark.yml" | |
schedule: | |
# run every morning at 10am Pacific Time | |
# Running this every day makes sure the static dependencies are up to date | |
- cron: '0 17 * * *' | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'wireshark version' | |
required: true | |
default: '3.7.1' | |
type: string | |
# Updating status is relatively safe (doesnt modify source code) and caution | |
# should be taken before adding more permissions. | |
permissions: | |
statuses: write | |
id-token: write # This is required for requesting the JWT/OIDC | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
WIRESHARK_VERSION: ${{ inputs.version || '3.7.1' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: mkdir -p target/tshark/v$WIRESHARK_VERSION | |
- name: Build | |
working-directory: .github | |
run: | | |
docker build -f Dockerfile.tshark -t tshark-static --build-arg version=$WIRESHARK_VERSION . | |
docker run \ | |
-v `pwd`/../target/tshark/v$WIRESHARK_VERSION:/host-dir \ | |
tshark-static \ | |
cp /usr/local/bin/tshark /usr/local/bin/editcap /host-dir/ | |
- uses: aws-actions/configure-aws-credentials@v4.0.2 | |
if: github.event_name == 'schedule' || github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name | |
with: | |
role-to-assume: arn:aws:iam::024603541914:role/GitHubOIDCRole | |
role-session-name: S2nQuicGHAS3Session | |
aws-region: us-west-2 | |
- name: Upload to S3 | |
if: github.event_name == 'schedule' || github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name | |
run: | | |
aws s3 sync target/tshark "s3://s2n-quic-ci-artifacts/tshark" --acl private --follow-symlinks | |