mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 10:00:44 -05:00
21 lines
656 B
Bash
Executable File
21 lines
656 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) The OpenTofu Authors
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
# Copyright (c) 2023 HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -uo pipefail
|
|
|
|
if [[ $arch == 'arm' || $arch == 'arm64' ]]
|
|
then
|
|
export DIR=$(mktemp -d)
|
|
unzip -d $DIR "${e2e_cache_path}/tofu-e2etest_${os}_${arch}.zip"
|
|
unzip -d $DIR "./tofu_${version}_${os}_${arch}.zip"
|
|
sudo chmod +x $DIR/e2etest
|
|
docker run --platform=linux/arm64 -v $DIR:/src -w /src arm64v8/alpine ./e2etest -test.v
|
|
else
|
|
unzip "${e2e_cache_path}/tofu-e2etest_${os}_${arch}.zip"
|
|
unzip "./tofu_${version}_${os}_${arch}.zip"
|
|
TF_ACC=1 ./e2etest -test.v
|
|
fi
|