File tree 5 files changed +7
-61
lines changed
5 files changed +7
-61
lines changed Original file line number Diff line number Diff line change 37
37
strategy :
38
38
fail-fast : false
39
39
matrix :
40
- python-version : ["3.10"]
40
+ python-version : [3.8, 3.9, "3.10"]
41
41
os : [ubuntu-latest]
42
42
43
43
steps :
69
69
run : |
70
70
python -m pip install --upgrade pip
71
71
just install
72
- # - name: Run Lib Tests
73
- # run: |
74
- # just test-library
72
+ - name : Run Lib Tests
73
+ run : |
74
+ just test-library
75
75
- name : Run Func Tests
76
76
run : |
77
77
just test-functions
@@ -128,30 +128,4 @@ jobs:
128
128
uses : pypa/gh-action-pypi-publish@release/v1
129
129
with :
130
130
user : CouncilDataProject
131
- password : ${{ secrets.PYPI_TOKEN }}
132
-
133
- # Build and release cdp-backend Docker image
134
- - name : Sleep for PyPI Indexing Time
135
- run : |
136
- sleep 120
137
-
138
- - name : Log in to GitHub Container Registry
139
- uses : docker/login-action@v2
140
- with :
141
- registry : ghcr.io
142
- username : ${{ github.actor }}
143
- password : ${{ secrets.GITHUB_TOKEN }}
144
-
145
- - name : Extract Metadata (tags, labels) for Docker
146
- id : docker-meta
147
- uses : docker/metadata-action@v4
148
- with :
149
- images : ghcr.io/${{ github.repository }}
150
-
151
- - name : Build and Push Docker Image to GitHub Container Registry
152
- uses : docker/build-push-action@v4
153
- with :
154
- context : .
155
- push : true
156
- tags : ${{ steps.docker-meta.outputs.tags }}
157
- labels : ${{ steps.docker-meta.outputs.labels }}
131
+ password : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ dev-infrastructure/Justfile
139
139
dev-infrastructure /gcloud-functions /*
140
140
dev-infrastructure /lifecycle-rules.json
141
141
test-clipped. *
142
+ faster-whisper-models /
142
143
143
144
# Common credentials directories
144
145
.keys /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -85,15 +85,6 @@ serve-docs:
85
85
just generate-docs
86
86
python -mwebbrowser -t " file://{{ project_uri}} /docs/_build/index.html"
87
87
88
- # build the docker image for pipeline running
89
- DOCKER_IMAGE_NAME := ' councildataproject/cdp-backend'
90
- docker-build :
91
- docker build --progress=plain -t {{ DOCKER_IMAGE_NAME }} .
92
-
93
- # run the docker image locally
94
- docker-run :
95
- docker run --rm -it --gpus all {{ DOCKER_IMAGE_NAME }} bash
96
-
97
88
# tag a new version
98
89
tag-for-release version :
99
90
git tag -a " {{ version}} " -m " {{ version}} "
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ pipeline = [
78
78
" tqdm~=4.62" ,
79
79
" transformers~=4.16" ,
80
80
" vimeo_downloader~=0.4" ,
81
- " yt-dlp>=2022 .2.4 " ,
81
+ " yt-dlp>=2023 .2.17 " ,
82
82
]
83
83
functions = [
84
84
" flask==2.1.0" ,
You can’t perform that action at this time.
0 commit comments