CI python linux arm install
This commit is contained in:
parent
685f1aa4da
commit
cecb7bf16c
10
.github/workflows/tests.yaml
vendored
10
.github/workflows/tests.yaml
vendored
@ -51,7 +51,15 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
DEBIAN_FRONTEND: noninteractive
|
DEBIAN_FRONTEND: noninteractive
|
||||||
run: apt-get update && apt-get install -y jq
|
run: apt-get update && apt-get install -y jq
|
||||||
- name: Install Python
|
# At present the stock setup-python action fails on Linux/aarch64
|
||||||
|
# Conditional steps below workaroud this by using deadsnakes for that case only
|
||||||
|
- name: "Install Python for ARM on Linux"
|
||||||
|
if: ${{ runner.arch == 'arm64' && runner.os == 'Linux' }}
|
||||||
|
uses: deadsnakes/action@v3.0.1
|
||||||
|
with:
|
||||||
|
python-version: 3.11
|
||||||
|
- name: "Install Python cases other than ARM on Linux"
|
||||||
|
if: ${{ ! (runner.arch == 'arm64' && runner.os == 'Linux') }}
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.11
|
python-version: 3.11
|
||||||
|
@ -1,21 +1,22 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -ex
|
set -e
|
||||||
|
|
||||||
stack_dir=$(readlink -f "$1")
|
stack_dir=$(readlink -f "$1")
|
||||||
[[ -d "$stack_dir" ]]
|
[[ -d "$stack_dir" ]]
|
||||||
|
|
||||||
|
laconic_so="laconic-so --verbose --stack $stack_dir"
|
||||||
|
|
||||||
CONFIG_DIR=$(readlink -f "${CONFIG_DIR:-$(mktemp -d)}")
|
CONFIG_DIR=$(readlink -f "${CONFIG_DIR:-$(mktemp -d)}")
|
||||||
# By default assume we are running in the project root.
|
# By default assume we are running in the project root.
|
||||||
export CERC_REPO_BASE_DIR="${CERC_REPO_BASE_DIR:-$(git rev-parse --show-toplevel)/..}"
|
export CERC_REPO_BASE_DIR="${CERC_REPO_BASE_DIR:-$(git rev-parse --show-toplevel)/..}"
|
||||||
|
|
||||||
laconic_so="laconic-so --verbose --stack $stack_dir"
|
|
||||||
|
|
||||||
# Don't run geth/plugeth in the debugger, it will swallow error backtraces
|
# Don't run geth/plugeth in the debugger, it will swallow error backtraces
|
||||||
echo CERC_REMOTE_DEBUG=false >> $CONFIG_DIR/stack.env
|
echo CERC_REMOTE_DEBUG=false >> $CONFIG_DIR/stack.env
|
||||||
# Passing this lets us run eth_call forwarding tests without running ipld-eth-db
|
# Passing this lets us run eth_call forwarding tests without running ipld-eth-db
|
||||||
echo CERC_RUN_STATEDIFF=${CERC_RUN_STATEDIFF:-true} >> $CONFIG_DIR/stack.env
|
echo CERC_RUN_STATEDIFF=${CERC_RUN_STATEDIFF:-true} >> $CONFIG_DIR/stack.env
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
if [[ -z $SKIP_BUILD ]]; then
|
if [[ -z $SKIP_BUILD ]]; then
|
||||||
# Prevent conflicting tty output
|
# Prevent conflicting tty output
|
||||||
@ -35,7 +36,7 @@ fi
|
|||||||
|
|
||||||
set +x
|
set +x
|
||||||
|
|
||||||
# Get IPv4 endpoint of geth file server
|
# Get IPv4 endpoint of geth bootnode file server
|
||||||
bootnode_endpoint=$(docker port test-fixturenet-eth-bootnode-geth-1 9898 | head -1)
|
bootnode_endpoint=$(docker port test-fixturenet-eth-bootnode-geth-1 9898 | head -1)
|
||||||
|
|
||||||
# Extract the chain config and ID from genesis file
|
# Extract the chain config and ID from genesis file
|
||||||
|
Loading…
Reference in New Issue
Block a user