Skip to content

Commit

Permalink
Updated tiledarray version
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhang-23 committed Sep 1, 2023
1 parent db507c3 commit 582d122
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/actions/container-build_test_release/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

set -e

CR_PAT=$1
USER=$2
Expand All @@ -35,6 +36,11 @@ echo $CR_PAT | docker login ghcr.io -u $USER --password-stdin

docker build -t docker-action --build-arg cr_pat=$CR_PAT --build-arg user=$USER --build-arg base_tag=$BASE_TAG --build-arg gcc_version=$GCC_VRESION --build-arg clang_version=$CLANG_VERSION --build-arg ninja_build=$NINJA_BUILD --build-arg use_clang=$USE_CLANG --build-arg cmaize_github_token=$CMAIZE_GITHUB_TOKEN --build-arg install=$INSTALL --build-arg unit_test=$TEST --build-arg int_test=$INTEGRATION_TEST --build-arg branch_name=$BRANCH_NAME --build-arg dep_repo_tag=${DEP_REPO_TAG} . && docker run docker-action

if [ $? != 0 ]; ; then
echo "Building/Testing failed!"
exit 1
fi

container_id="$(docker ps -a | grep 'docker-action')"
container_id="${container_id%% *}"
docker cp ${container_id}:/install ./install
Expand Down

0 comments on commit 582d122

Please sign in to comment.