Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
chrzaszcz committed Mar 14, 2023
1 parent 5fe1413 commit 26aa2f9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,10 @@ jobs:
- restore_certs
- fetch_build_packages
- run: $EXEC tools/configure with-all
- run: $EXEC tools/build-releases.sh
- run: $EXEC make rel
- cache_prod_build: {arch: arm64}
- persist_workspace

build_in_docker:
executor: << parameters.executor >>
Expand Down Expand Up @@ -559,6 +561,24 @@ jobs:
- upload_results_to_aws
- publish_github_comment

small_tests_in_docker_arm64:
executor: arm64
environment:
DOCKER_IMAGE: *OTP25
EXEC: docker exec main
steps:
- run: docker run -dit -n main --rm -v `pwd`:`pwd` $DOCKER_IMAGE
- run: docker run -dit -n redis --network host --rm cimg/redis:__REDIS_VERSION__
- restore_workspace
- run:
name: Wait for redis
command: |
$EXEC tools/wait-for-it.sh -p 6379
- run:
name: Run Small Tests
command: |
$EXEC tools/test.sh -p small_tests -s true -e true
big_tests_in_docker:
executor: << parameters.executor >>
parallelism: 1
Expand Down

0 comments on commit 26aa2f9

Please sign in to comment.