Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
f4949ecb
There was an error fetching the commit references. Please try again later.
Commit
f4949ecb
authored
1 year ago
by
niansa
Browse files
Options
Downloads
Patches
Plain Diff
Add initial Windows CI
parent
8c64f9a3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.ci/scripts/windows/docker.sh
+10
-23
10 additions, 23 deletions
.ci/scripts/windows/docker.sh
.gitlab-ci.yml
+14
-0
14 additions, 0 deletions
.gitlab-ci.yml
with
24 additions
and
23 deletions
.ci/scripts/windows/docker.sh
+
10
−
23
View file @
f4949ecb
...
@@ -7,55 +7,42 @@ set -e
...
@@ -7,55 +7,42 @@ set -e
#cd /suyu
#cd /suyu
ccache
-sv
wine
ccache
.exe
-sv
mkdir
-p
build
&&
cd
build
mkdir
-p
build
&&
cd
build
cmak
e ..
\
wine cmake.ex
e ..
\
-DCMAKE_BUILD_TYPE
=
Release
\
-DCMAKE_BUILD_TYPE
=
Release
\
-DCMAKE_
TOOLCHAIN_FILE
=
"
${
PWD
}
/../CMakeModules/MinGWCross.cmake"
\
-DCMAKE_
INSTALL_PREFIX
=
C:/windows-libs/mingw64/
\
-DDISPLAY_VERSION
=
"
$1
"
\
-DDISPLAY_VERSION
=
"
$1
"
\
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD
=
O
N
\
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD
=
O
FF
\
-DENABLE_QT_TRANSLATION
=
O
N
\
-DENABLE_QT_TRANSLATION
=
O
FF
\
-DUSE_CCACHE
=
ON
\
-DUSE_CCACHE
=
ON
\
-DSUYU_USE_BUNDLED_SDL2
=
OFF
\
-DSUYU_USE_BUNDLED_SDL2
=
OFF
\
-DSUYU_USE_EXTERNAL_SDL2
=
OFF
\
-DSUYU_USE_EXTERNAL_SDL2
=
OFF
\
-DENABLE_LIBUSB
=
NO
\
-DSUYU_TESTS
=
OFF
\
-DSUYU_TESTS
=
OFF
\
-GNinja
-GNinja
ninja suyu suyu-cmd
wine
ninja
.exe
suyu suyu-cmd
ccache
-sv
wine
ccache
.exe
-sv
echo
"Tests skipped"
echo
"Tests skipped"
# TODO: actually run the tests
#ctest -VV -C Release
#ctest -VV -C Release
echo
'Prepare binaries...'
echo
'Prepare binaries...'
cd
..
cd
..
mkdir
package
mkdir
package
if
[
-d
"/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/"
]
;
then
QT_PLUGINS_PATH
=
'/usr/x86_64-w64-mingw32/lib/qt5/plugins'
else
#fallback to qt
QT_PLUGINS_PATH
=
'/usr/x86_64-w64-mingw32/lib/qt/plugins'
fi
find build/
-name
"suyu*.exe"
-exec
cp
{}
'package'
\;
find build/
-name
"suyu*.exe"
-exec
cp
{}
'package'
\;
# copy Qt plugins
mkdir
package/platforms
cp
-v
"
${
QT_PLUGINS_PATH
}
/platforms/qwindows.dll"
package/platforms/
cp
-rv
"
${
QT_PLUGINS_PATH
}
/mediaservice/"
package/
cp
-rv
"
${
QT_PLUGINS_PATH
}
/imageformats/"
package/
cp
-rv
"
${
QT_PLUGINS_PATH
}
/styles/"
package/
rm
-f
package/mediaservice/
*
d.dll
for
i
in
package/
*
.exe
;
do
for
i
in
package/
*
.exe
;
do
# we need to process pdb here, however, cv2pdb
# we need to process pdb here, however, cv2pdb
# does not work here, so we just simply strip all the debug symbols
# does not work here, so we just simply strip all the debug symbols
x86_64-w64-mingw32-strip
"
${
i
}
"
x86_64-w64-mingw32-strip
"
${
i
}
"
done
done
python3 .ci/scripts/windows/scan_dll.py package/
*
.exe
package/imageformats/
*
.dll
"package/"
python3 .ci/scripts/windows/scan_dll.py package/
*
.exe
"package/"
# copy FFmpeg libraries
# copy FFmpeg libraries
EXTERNALS_PATH
=
"
$(
pwd
)
/build/externals"
EXTERNALS_PATH
=
"
$(
pwd
)
/build/externals"
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
14
−
0
View file @
f4949ecb
...
@@ -25,3 +25,17 @@ build-linux:
...
@@ -25,3 +25,17 @@ build-linux:
artifacts
:
artifacts
:
paths
:
paths
:
-
artifacts/*
-
artifacts/*
build-windows
:
stage
:
build
image
:
suyuemu/cibuild:windows-x64
resource_group
:
windows-ci
variables
:
RELEASE_NAME
:
mainline
script
:
-
git submodule update --init --depth 1 --recursive
-
bash .ci/scripts/windows/docker.sh
-
bash .ci/scripts/windows/upload.sh
artifacts
:
paths
:
-
artifacts/*
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment