mirror of
https://github.com/SFML/CSFML.git
synced 2025-10-19 12:13:26 +08:00
66 lines
1.1 KiB
Bash
Executable File
66 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Automatically exit on error
|
|
set -e
|
|
|
|
if [[ -z "$1" ]]; then
|
|
echo 'No Runtime Identifier specified, running all known RIDs'
|
|
./build.docker.sh "linux-x64"
|
|
./build.docker.sh "linux-musl-x64"
|
|
./build.docker.sh "linux-arm"
|
|
./build.docker.sh "linux-arm64"
|
|
exit 0
|
|
fi
|
|
|
|
RID="$1"
|
|
|
|
case "$RID" in
|
|
|
|
'alpine-x64')
|
|
Image='alpine'
|
|
Shell='/bin/sh'
|
|
;;
|
|
|
|
'debian-x64')
|
|
Image='debian'
|
|
Shell='/bin/bash'
|
|
;;
|
|
|
|
'fedora-x64')
|
|
Image='fedora'
|
|
Shell='/bin/bash'
|
|
;;
|
|
|
|
'linux-x64')
|
|
Image='ubuntu:22.04'
|
|
Shell='/bin/bash'
|
|
;;
|
|
|
|
'linux-musl-x64')
|
|
Image='alpine:3.15'
|
|
Shell='/bin/sh'
|
|
;;
|
|
|
|
'linux-arm')
|
|
Image='arm32v7/ubuntu:22.04'
|
|
Shell='/bin/bash'
|
|
;;
|
|
|
|
'linux-arm64')
|
|
Image='arm64v8/ubuntu:22.04'
|
|
Shell='/bin/bash'
|
|
;;
|
|
|
|
*)
|
|
echo "Unknown Runtime Identifier $RID"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|
|
|
|
echo "Building $RID using image $Image with $Shell"
|
|
|
|
RepoRoot="$(realpath "$(git rev-parse --show-toplevel)")"
|
|
|
|
docker run --rm --mount "type=bind,source=$RepoRoot,destination=/csfml/" "$Image" "$Shell" -c "cd /csfml/tools/nuget/; ./docker.$RID.sh"
|