Skip to content

Commit

Permalink
Merge pull request #639 from eosnetworkfoundation/gh-632-reduce-artif…
Browse files Browse the repository at this point in the history
…act-size-remove-obj

Reduce artifact size remove obj
  • Loading branch information
oschwaldp-oci committed Aug 8, 2023
2 parents d3f5cb9 + 87dff73 commit a7ed7d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-contract-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ee make -j "$(nproc)" unit_test

# pack
ee popd
ee 'tar -czf ../contract-test.tar.gz build/*'
ee 'tar -czf ../contract-test.tar.gz --exclude="*.o" build/*'
ee popd

echo "Done! - ${0##*/}"
2 changes: 1 addition & 1 deletion .github/workflows/build-contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ ee make -j "$(nproc)"

# pack
ee popd
ee 'tar -czf contract.tar.gz build/*'
ee 'tar -czf contract.tar.gz --exclude="*.obj" build/*'

echo "Done! - ${0##*/}"

0 comments on commit a7ed7d9

Please sign in to comment.