-
Notifications
You must be signed in to change notification settings - Fork 222
148 lines (125 loc) · 5.85 KB
/
cli-commands-tests.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: cli commands tests
on:
pull_request:
paths:
- "agenta-backend/**"
- "agenta-cli/**"
jobs:
serve-to-oss:
runs-on: ubuntu-latest
environment: oss
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install poetry
cd agenta-cli
pip install -e .
- name: Create .env file
run: |
echo "OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }}" > .env
working-directory: examples/deprecated_sdk_v2/baby_name_generator
- name: Run agenta init
run: |
APP_NAME="gh-cli-$(date +'%d-%m-%y_%H-%M-%S')"
agenta init --app-name $APP_NAME --backend-host ${{ secrets.BACKEND_HOST }}
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
- name: Run agenta variant serve
run: |
APP_NAME=$(cat app_name.txt)
agenta variant serve --file_name app.py 2>&1 | tee serve_output.log
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
- name: Check if app is running
uses: ./.github/actions/check-app-accessibility
with:
log-file: examples/deprecated_sdk_v2/baby_name_generator/serve_output.log
continue-on-error: false
- name: Run agenta variant serve with overwrite
run: |
agenta variant serve --file_name app.py --overwrite
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
- name: Remove variant using backend API
run: |
APP_NAME=$(cat app_name.txt)
VARIANT_NAME="app.py"
BACKEND_URL="${{ secrets.BACKEND_HOST }}"
# Get the variant ID using the app name and variant name
VARIANT_ID=$(curl -s "${BACKEND_URL}/api/variants/by-name/${APP_NAME}/${VARIANT_NAME}" | jq -r '.id')
# Remove the variant using the backend API
curl -X DELETE "${BACKEND_URL}/api/variants/${VARIANT_ID}/"
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
serve-to-cloud:
runs-on: ubuntu-latest
environment: oss
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install poetry
cd agenta-cli
pip install -e .
- name: Create .env file
run: |
echo "OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }}" > .env
working-directory: examples/deprecated_sdk_v2/baby_name_generator
- name: Run agenta init
run: |
APP_NAME="gh-cli-$(date +'%d-%m-%y_%H-%M-%S')"
AGENTA_API_KEY=${{ secrets.AGENTA_API_KEY }} agenta init --app-name $APP_NAME --backend-host https://cloud.agenta.ai --organisation-name team
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
- name: Run agenta variant serve
run: |
APP_NAME=$(cat app_name.txt)
agenta variant serve --file_name app.py 2>&1 | tee serve_output.log
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
- name: Check if app is running
uses: ./.github/actions/check-app-accessibility
with:
log-file: examples/deprecated_sdk_v2/baby_name_generator/serve_output.log
api-key: ${{ secrets.AGENTA_API_KEY }}
continue-on-error: false
- name: Run agenta variant serve with overwrite
run: |
agenta variant serve --file_name app.py --overwrite
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false
- name: Remove variant using backend API
run: |
APP_NAME=$(cat app_name.txt)
VARIANT_NAME="app.py"
BACKEND_URL="https://cloud.agenta.ai"
API_KEY="${{ secrets.AGENTA_API_KEY }}"
# Get the variant ID using the app name and variant name
VARIANT_ID=$(curl -s -H "Authorization: ApiKey ${API_KEY}" "${BACKEND_URL}/api/variants/by-name/${APP_NAME}/${VARIANT_NAME}" | jq -r '.id')
# Remove the variant using the backend API
curl -X DELETE -H "Authorization: ApiKey ${API_KEY}" "${BACKEND_URL}/api/variants/${VARIANT_ID}/"
working-directory: examples/deprecated_sdk_v2/baby_name_generator
shell: bash
continue-on-error: false