forked from fetchai/agents-aea
-
Notifications
You must be signed in to change notification settings - Fork 16
281 lines (254 loc) · 9.73 KB
/
release.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
name: Release Flow
# Controls when the action will run.
on:
release:
types: [published]
jobs:
publish-pip-packages:
name: Create Framework & Plugin Releases
runs-on: ubuntu-20.04
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
python -m pip install --upgrade pip
pip install pipenv twine
- name: Build wheels and source tarball
run: |
echo Processing open-aea
pipenv run make dist
echo Processing aea-cli-benchmark
cd plugins/aea-cli-benchmark
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-cli-ipfs
cd plugins/aea-cli-ipfs
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-ledger-cosmos
cd plugins/aea-ledger-cosmos
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-ledger-ethereum
cd plugins/aea-ledger-ethereum
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-ledger-ethereum-hwi
cd plugins/aea-ledger-ethereum-hwi
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-ledger-ethereum-flashbots
cd plugins/aea-ledger-ethereum-flashbots
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-ledger-solana
cd plugins/aea-ledger-solana
pipenv run python setup.py sdist bdist_wheel
cd ../..
echo Processing aea-ledger-fetchai
cd plugins/aea-ledger-fetchai
pipenv run python setup.py sdist bdist_wheel
cd ../..
- name: Publish open-aea Framework to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: dist/
- name: Publish open-aea-cli-benchmark Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-cli-benchmark/dist/
- name: Publish open-aea-cli-ipfs Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-cli-ipfs/dist/
- name: Publish open-aea-ledger-cosmos Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-ledger-cosmos/dist/
- name: Publish open-aea-ledger-ethereum Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-ledger-ethereum/dist/
- name: Publish open-aea-ledger-ethereum-hwi Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-ledger-ethereum-hwi/dist/
- name: Publish open-aea-ledger-ethereum-flashbots Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-ledger-ethereum-flashbots/dist/
- name: Publish open-aea-ledger-solana Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-ledger-solana/dist/
- name: Publish open-aea-ledger-fetchai Plugin to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
packages-dir: plugins/aea-ledger-fetchai/dist/
publish-aea-packages:
name: Push Open AEA Packages
runs-on: ubuntu-latest
needs:
- publish-pip-packages
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
python -m pip install --upgrade pip
pip install open-aea[all] --no-cache
pip install open-aea-cli-ipfs --no-cache
- name: Push Packages
run: |
aea init --reset --author valory --ipfs --remote
aea push-all
publish-docs-images:
name: Publish Docs Images
runs-on: ubuntu-latest
needs:
- publish-aea-packages
steps:
- uses: actions/checkout@v2
- name: Docker login
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Set up support for multi platform build
run: |
docker run --privileged --rm tonistiigi/binfmt --install all
docker buildx create --use --name multibuild
docker buildx inspect --bootstrap
- name: Set up tag
run: echo export TAG=$(python3 -c "from setup import about; print(about[\"__version__\"])") > env.sh
- name: Build and push version tagged images
run: |
# export `TAG` variable
source env.sh
docker build -t valory/open-aea-docs:$TAG -f docs-image/Dockerfile . --push
docker build -t valory/open-aea-docs:latest -f docs-image/Dockerfile . --push
publish-user-images:
name: Publish User Images
runs-on: ubuntu-latest
needs:
- publish-aea-packages
steps:
- uses: actions/checkout@v2
- name: Docker login
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Set up support for multi platform build
run: |
docker run --privileged --rm tonistiigi/binfmt --install all
docker buildx create --use --name multibuild
docker buildx inspect --bootstrap
- name: Set up tag
run: echo export TAG=$(python3 -c "from setup import about; print(about[\"__version__\"])") > env.sh
- name: Build and push version tagged images
run: |
# export `TAG` variable
source env.sh
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t valory/open-aea-user:$TAG -f user-image/Dockerfile . --push
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t valory/open-aea-user:latest -f user-image/Dockerfile . --push
publish-deploy-images:
name: Publish Deploy Images
runs-on: ubuntu-latest
needs:
- publish-aea-packages
steps:
- uses: actions/checkout@v2
- name: Docker login
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Set up support for multi platform build
run: |
docker run --privileged --rm tonistiigi/binfmt --install all
docker buildx create --use --name multibuild
docker buildx inspect --bootstrap
- name: Set up tag
run: echo export TAG=$(python3 -c "from setup import about; print(about[\"__version__\"])") > env.sh
- name: Build and push version tagged images
run: |
# export `TAG` variable
source env.sh
docker buildx build --platform linux/amd64,linux/arm64 -t valory/open-aea-deploy:$TAG -f deploy-image/Dockerfile . --push
docker buildx build --platform linux/amd64,linux/arm64 -t valory/open-aea-deploy:latest -f deploy-image/Dockerfile . --push
publish-develop-images:
name: Publish Develop Images
runs-on: ubuntu-latest
needs:
- publish-aea-packages
steps:
- uses: actions/checkout@v2
- name: Docker login
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Set up support for multi platform build
run: |
docker run --privileged --rm tonistiigi/binfmt --install all
docker buildx create --use --name multibuild
docker buildx inspect --bootstrap
- name: Set up tag
run: echo export TAG=$(python3 -c "from setup import about; print(about[\"__version__\"])") > env.sh
- name: Build and push version tagged images
run: |
# export `TAG` variable
source env.sh
docker build -t valory/open-aea-develop:$TAG -f develop-image/Dockerfile . --push
docker build -t valory/open-aea-develop:latest -f develop-image/Dockerfile . --push