Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docker-qt-tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
qtwaylandtests
docker-qt-tests
Commits
f7597313
Commit
f7597313
authored
7 years ago
by
Johan Helsing
Browse files
Options
Downloads
Patches
Plain Diff
Minor cleanups
parent
2a6bdc4a
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
scripts/build-qtbase-tests.sh
+1
-1
1 addition, 1 deletion
scripts/build-qtbase-tests.sh
scripts/build-qtwayland-tests.sh
+1
-1
1 addition, 1 deletion
scripts/build-qtwayland-tests.sh
scripts/clone-qt.sh
+7
-4
7 additions, 4 deletions
scripts/clone-qt.sh
with
10 additions
and
7 deletions
README.md
+
1
−
1
View file @
f7597313
...
...
@@ -14,4 +14,4 @@ Build:
Run:
$ docker run -it docker-qt-tests
$ docker run
-e QT_DOCKERTEST_QTWAYLAND_REV=<sha1>
-it docker-qt-tests
This diff is collapsed.
Click to expand it.
scripts/build-qtbase-tests.sh
+
1
−
1
View file @
f7597313
#!/bin/bash
set
-ex
cd
~/build-qt/qtbase
make sub-tests
make sub-tests
-ks
This diff is collapsed.
Click to expand it.
scripts/build-qtwayland-tests.sh
+
1
−
1
View file @
f7597313
#!/bin/bash
set
-ex
cd
~/build-qt/qtwayland
make sub-tests
make sub-tests
-ks
This diff is collapsed.
Click to expand it.
scripts/clone-qt.sh
+
7
−
4
View file @
f7597313
#!/bin/bash
set
-ex
qt5_rev
=
${
QT_DOCKERTEST_QT5_REV
:-
5
.11
}
rm
-rf
qt5
mkdir
qt5
cd
qt5
srcdir
=
$(
pwd
)
/qt5
rm
-rf
$srcdir
mkdir
$srcdir
cd
$srcdir
git init
git remote add origin https://codereview.qt-project.org/qt/qt5.git
git fetch
--depth
1 origin
"
$qt5_rev
"
...
...
@@ -14,7 +17,7 @@ git checkout FETCH_HEAD
git submodule update
--init
--depth
50
--
qtbase qtxmlpatterns qtdeclarative qtwayland
if
[[
-v
QT_DOCKERTEST_QTWAYLAND_REV
]]
;
then
cd
qtwayland
cd
"
$srcdir
/
qtwayland
"
git fetch
--depth
1 origin
"
$QT_DOCKERTEST_QTWAYLAND_REV
"
git checkout FETCH_HEAD
fi
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