Skip to content

Commit

Permalink
release: ls of runner
Browse files Browse the repository at this point in the history
  • Loading branch information
denverwilliams committed Sep 4, 2020
1 parent a0edc6f commit adeb694
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# - curl -Lo kind https://github.com/kubernetes-sigs/kind/releases/download/0.0.1/kind-linux-amd64 && chmod +x kind && sudo mv kind /usr/local/bin/
script:
- shards install
- crystal spec -v || travis_terminate 1;
# - crystal spec -v || travis_terminate 1;
- docker pull crystallang/crystal:0.35.1-alpine
- docker run --rm -it -v $PWD:/workspace -w /workspace crystallang/crystal:0.35.1-alpine crystal build src/cnf-conformance.cr --release --static --link-flags "-lxml2 -llzma"
- |
Expand Down
2 changes: 2 additions & 0 deletions src/tasks/utils/release_manager.cr
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ module ReleaseManager
# LOGGING.info "build_resp: #{build_resp}"
# the name of the binary asset must be unique across all releases in github for project
cnf_tarball_name = "cnf-conformance-#{upsert_version}.tar.gz"
ls_resp = `ls -al`
LOGGING.info "ls_resp (before tar): #{ls_resp}"
cnf_tarball = `tar -czvf #{cnf_tarball_name} ./#{cnf_bin_asset_name}`
LOGGING.info "cnf_tarball: #{cnf_tarball}"
# cnf_bin_asset_name = "#{cnf_bin_path}-static" # change upload name for static builds
Expand Down

0 comments on commit adeb694

Please sign in to comment.