Skip to content

Commit

Permalink
Try fix circleci publish_artifacts 4
Browse files Browse the repository at this point in the history
  • Loading branch information
tasiov committed Nov 19, 2023
1 parent 349410f commit e163f8b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ jobs:
name: optimize x86_64 contracts
command: ./scripts/optimize.sh
- run:
name: Show x86_64 data
command: |
ls -l artifacts
cat artifacts/checksums.txt
- store_artifacts:
path: artifacts
destination: x86_64-artifacts
name: copy x86_64 artifacts
command: cp artifacts/* x86_64-artifacts/
- persist_to_workspace:
root: .
paths:
- x86_64-artifacts/

optimize_arm64:
machine:
Expand All @@ -53,18 +52,19 @@ jobs:
name: optimize arm64 contracts
command: ./scripts/optimize-arm.sh
- run:
name: Show ARM64 data
command: |
ls -l artifacts
cat artifacts/checksums.txt
- store_artifacts:
path: artifacts
destination: arm64-artifacts
name: copy arm64 artifacts
command: cp artifacts/* arm64-artifacts/
- persist_to_workspace:
root: .
paths:
- arm64-artifacts/

upload_artifacts:
docker:
- image: cibuilds/github:0.13
steps:
- attach_workspace:
at: /workspace
- checkout
- run:
name: Combine artifacts
Expand Down

0 comments on commit e163f8b

Please sign in to comment.