Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 430dd85

Browse files
committed
tt1
1 parent 5dc7191 commit 430dd85

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,35 @@ jobs:
8585
push_rolling: true
8686
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-api' }}
8787
cache_file: "uv.lock"
88+
89+
upload-overwatch:
90+
runs-on: ubuntu-latest
91+
steps:
92+
- uses: actions/checkout@v4
93+
- name: Install Static Analysis Tools
94+
run: |
95+
pip install mypy==1.15.0
96+
pip install ruff==0.3.3
97+
- name: Install Build Dependencies
98+
run: |
99+
sudo apt-get update
100+
# Install libssl1.1 from Ubuntu 20.04 repositories
101+
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
102+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
103+
- name: Install Overwatch CLI
104+
run: |
105+
curl -o overwatch-cli https://overwatch.codecov.dev/linux/cli
106+
chmod +x overwatch-cli
107+
- name: Print Current Working Directory
108+
run: pwd
109+
- name: List Contents of Current Working Directory
110+
run: ls -la
111+
- name: List Directories Under Root
112+
run: ls -d /*/
113+
- name: Run Overwatch CLI
114+
run: |
115+
./overwatch-cli \
116+
--auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} \
117+
--organization-slug codecov \
118+
python \
119+
--python-path $(which python3)

0 commit comments

Comments
 (0)