eynollah/.circleci/config.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2020-11-23 13:40:54 +01:00
version: 2
jobs:
2023-03-28 23:45:38 +02:00
build-python37:
machine:
- image: ubuntu-2004:2023.02.1
2023-03-28 23:45:38 +02:00
steps:
- checkout
- restore_cache:
keys:
- model-cache
- run: make models
- save_cache:
key: model-cache
paths:
models_eynollah.tar.gz
models_eynollah
2023-04-13 16:31:14 +02:00
- run:
2023-04-13 16:35:46 +02:00
name: "Set Python Version"
command: pyenv install -s 3.7.16 && pyenv global 3.7.16
2023-03-28 23:45:38 +02:00
- run: make install
- run: make smoke-test
build-python38:
machine:
- image: ubuntu-2004:2023.02.1
2020-11-23 13:40:54 +01:00
steps:
- checkout
- restore_cache:
keys:
- model-cache
- run: make models
- save_cache:
key: model-cache
paths:
models_eynollah.tar.gz
models_eynollah
2023-04-13 16:31:14 +02:00
- run:
2023-04-13 16:35:46 +02:00
name: "Set Python Version"
command: pyenv install -s 3.8.16 && pyenv global 3.8.16
2020-11-23 13:40:54 +01:00
- run: make install
- run: make smoke-test
workflows:
version: 2
build:
jobs:
2023-09-26 18:33:05 +02:00
# - build-python37
2023-03-28 23:54:50 +02:00
- build-python38