Files
p2pool-salvium/scripts/compiler_tests/build_all.sh

23 lines
308 B
Bash
Raw Normal View History

2025-07-06 21:59:52 +02:00
#!/bin/sh
# Example usage: build_all.sh v4.8.1
cd "$(dirname "$0")"
docker images | grep -q p2pool_compiler_tests_ubuntu
if [ $? -ne 0 ]; then
echo "Build image not found, creating it"
images/ubuntu/build.sh
fi
2025-07-19 22:16:50 +02:00
for i in 8 15;
2025-07-06 21:59:52 +02:00
do
gcc/build.sh $1 $i
done
2025-07-06 22:47:18 +02:00
2025-07-19 22:16:50 +02:00
for i in 17 21;
2025-07-06 22:47:18 +02:00
do
clang/build.sh $1 $i
done