Merge pull request #1304 from influxdata/chore/ci-debug-logging

chore: logging to debug CI
pull/24376/head
Luke Bond 2021-04-26 13:06:32 +01:00 committed by GitHub
commit 8aabef0141
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -193,6 +193,9 @@ jobs:
- run:
name: Cargo release build with target arch set for CRoaring
command: ROARING_ARCH=x86-64 cargo build --release
- run: |
echo sha256sum after build is
sha256sum target/release/influxdb_iox
- setup_remote_docker:
docker_layer_caching: true
- run: |

View File

@ -16,6 +16,7 @@ RUN mkdir ~/.influxdb_iox
RUN ls -la ~/.influxdb_iox
COPY target/release/influxdb_iox /usr/bin/influxdb_iox
RUN echo "The binary just added has sha256 sum $(sha256sum /usr/bin/influxdb_iox)"
EXPOSE 8080 8082