Some checks failed
Release / dynamic (push) Failing after 2m11s
Release / MXE (push) Failing after 7s
Release / static (push) Failing after 7s
Release / MXE Win32 Dynamic (push) Has been skipped
Release / MXE Win32 Static (push) Has been skipped
Release / MXE Win64 Dynamic (push) Has been skipped
Release / MXE Win64 Static (push) Has been skipped
26 lines
748 B
Bash
Executable File
26 lines
748 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
docker pull ubuntu:24.04
|
|
|
|
# Ubuntu dynamically linked
|
|
docker build --force-rm -f Dockerfile -t fffaraz/qt:latest .
|
|
|
|
# Ubuntu statically linked
|
|
docker build --force-rm -f Dockerfile.static -t fffaraz/qt:static .
|
|
|
|
# MXE (M cross environment)
|
|
docker build --force-rm -f Dockerfile.mxe -t fffaraz/qt:mxe .
|
|
|
|
# Windows 32bit statically linked
|
|
docker build --force-rm -f Dockerfile.win32s -t fffaraz/qt:win32s .
|
|
|
|
# Windows 64bit statically linked
|
|
docker build --force-rm -f Dockerfile.win64s -t fffaraz/qt:win64s .
|
|
|
|
# Windows 32bit dynamically linked
|
|
docker build --force-rm -f Dockerfile.win32d -t fffaraz/qt:win32d .
|
|
|
|
# Windows 64bit dynamically linked
|
|
docker build --force-rm -f Dockerfile.win64d -t fffaraz/qt:win64d .
|