We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0ef6ac commit f4e077eCopy full SHA for f4e077e
.github/workflows/bigendian.sh
@@ -8,10 +8,19 @@ set -x
8
# see: https://github.community/t/testing-against-multiple-architectures/17111/6
9
#
10
apt-get update -y
11
-apt-get install -y python3
12
-python3 --version
13
-python3 -c "import platform; print(platform.machine())"
14
-python3 -c "import sys;sys.exit(0 if sys.byteorder=='big' else 1)"
+apt-get install -y \
+ python3 \
+ python3-setuptools \
+ python3-pip \
15
+ python3-pytest \
16
+ python3-msgpack \
17
+ python3-fsspec \
18
+ python3-numcodecs \
19
+ python3-asciitree \
20
+ python3-fasteners
21
+echo =================================
22
lscpu | grep Endian
-echo -n "Test endianness: 0=Big, 1=Little ? "
-echo -n I | od -to2 | head -n1 | cut -f2 -d" " | cut -c6
23
24
+
25
+python -m pip install .
26
+pytest -sv
0 commit comments