diff --git a/SPECS/aws-nitro-enclaves-cli.spec b/SPECS/aws-nitro-enclaves-cli.spec index 60b618fb..b5aaac0e 100644 --- a/SPECS/aws-nitro-enclaves-cli.spec +++ b/SPECS/aws-nitro-enclaves-cli.spec @@ -1,5 +1,6 @@ # Copyright 2020-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 +#TODO %define ne_name nitro_enclaves %define ne_group ne diff --git a/appspec.yml b/appspec.yml index 647f9e03..aa10f1d7 100644 --- a/appspec.yml +++ b/appspec.yml @@ -2,5 +2,5 @@ version: 0.0 os: linux hooks: AfterInstall: - - location: ci_entrypoint.sh - timeout: 3600 + - location: ci_entrypoint_wrapper.sh + timeout: 3601 diff --git a/ci_entrypoint_wrapper.sh b/ci_entrypoint_wrapper.sh new file mode 100644 index 00000000..d03db20f --- /dev/null +++ b/ci_entrypoint_wrapper.sh @@ -0,0 +1,6 @@ +#!/bin/bash -xe + +SCRIPT_DIR="$(realpath $(dirname $0))" + +bash -x "$SCRIPT_DIR/ci_entrypoint.sh" 2>&1 | tee "$SCRIPT_DIR/myoutput" +