Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 35 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
command: python ./test_btec_script.py
build-linux-amd64:
machine:
image: ubuntu-2004:202201-02
image: ubuntu-2204:current
working_directory: ~/repo
steps:
- checkout
Expand All @@ -124,7 +124,7 @@ jobs:
name: Build with build.spec
command: |
export PYTHONHASHSEED=42
export CIRCLE_SHORT_SHA256=$(eval echo $CIRCLE_SHA2256 | cut -c -7)
export CIRCLE_SHORT_SHA256=$(eval echo $CIRCLE_SHA256 | cut -c -7)
export BUILD_FILE_NAME=staking_deposit-cli-${CIRCLE_SHORT_SHA256}-linux-amd64;
mkdir ${BUILD_FILE_NAME};
pyenv global 3.10.2;
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
path: /tmp/artifacts
build-linux-arm64:
machine:
image: ubuntu-2004:202201-02
image: ubuntu-2204:current
resource_class: arm.medium
working_directory: ~/repo
steps:
Expand Down Expand Up @@ -316,11 +316,39 @@ workflows:
- win-py310-script
build_linux:
jobs:
- build-linux-amd64
- build-linux-arm64
- build-linux-amd64:
filters:
branches:
only:
- master
tags:
only:
- /^v.*/
- build-linux-arm64:
filters:
branches:
only:
- master
tags:
only:
- /^v.*/
build_windows:
jobs:
- build-windows
- build-windows:
filters:
branches:
only:
- master
tags:
only:
- /^v.*/
build_macos:
jobs:
- build-macos
- build-macos:
filters:
branches:
only:
- master
tags:
only:
- /^v.*/
Loading