Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d7b14b4

Browse files
committedFeb 5, 2025·
Adds ci-queue-pct lambda code to aws/lambdas and include it to the release
1 parent 88e4f1e commit d7b14b4

File tree

6 files changed

+674
-1
lines changed

6 files changed

+674
-1
lines changed
 

‎.github/workflows/lambda-do-release-runners.yml

+27-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
description: tag to create release
77
required: true
88

9-
name: Upload Release for runners lambdas
9+
name: Upload Release for lambdas
1010

1111
jobs:
1212
release-lambdas:
@@ -73,3 +73,29 @@ jobs:
7373
artifacts: "runner-binaries-syncer.zip,runners.zip,webhook.zip"
7474
name: ${{ inputs.tag }}
7575
tag: ${{ inputs.tag }}
76+
77+
release-ci-queue-pct:
78+
name: Upload Release for ci-queue-pct lambda
79+
runs-on: ubuntu-latest
80+
permissions:
81+
contents: write
82+
env:
83+
REF: ${{ inputs.tag }}
84+
steps:
85+
- name: Checkout code
86+
uses: actions/checkout@v4
87+
with:
88+
ref: ${{ inputs.tag }}
89+
90+
- name: Build deployment.zip
91+
working-directory: aws/lambda/ci-queue-pct
92+
run: make deployment.zip
93+
94+
- name: Copy deployment.zip to root
95+
run: cp aws/lambda/ci-queue-pct/deployment.zip ci-queue-pct.zip
96+
97+
- uses: ncipollo/release-action@v1
98+
with:
99+
artifacts: "ci-queue-pct.zip"
100+
name: ${{ inputs.tag }}
101+
tag: ${{ inputs.tag }}

‎aws/lambda/ci-queue-pct/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.zip
2+
deployment/
3+
venv/

‎aws/lambda/ci-queue-pct/Makefile

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
all: run-local
2+
3+
clean:
4+
rm -rf deployment
5+
rm -rf venv
6+
rm -rf deployment.zip
7+
8+
venv/bin/python:
9+
virtualenv venv
10+
venv/bin/pip install -r requirements.txt
11+
12+
.PHONY: run-local
13+
run-local: venv/bin/python
14+
venv/bin/python ci_queue_pct.py --max-hours 70 --worker-pool-size 8 # --rebuild-table
15+
16+
.PHONY: run-local-loop
17+
run-local-loop: venv/bin/python
18+
while true ; do venv/bin/python ci_queue_pct.py --max-hours 70 --worker-pool-size 8 ; done
19+
20+
deployment.zip:
21+
mkdir -p deployment
22+
cp ci_queue_pct.py ./deployment/.
23+
pip3.10 install -r requirements.txt -t ./deployment/. --platform manylinux2014_x86_64 --only-binary=:all: --implementation cp --python-version 3.10 --upgrade
24+
cd ./deployment && zip -q -r ../deployment.zip .
25+
26+
.PHONY: create-deployment-package
27+
create-deployment-package: deployment.zip

‎aws/lambda/ci-queue-pct/ci_queue_pct.py

+608
Large diffs are not rendered by default.

‎aws/lambda/ci-queue-pct/dorun.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
while true ; do
4+
make run-local
5+
done
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
PyGithub==1.59.0
2+
python-dateutil==2.8.2
3+
PyYAML==6.0.1
4+
clickhouse_connect==0.8.5

0 commit comments

Comments
 (0)
Please sign in to comment.