Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Buildbox-Windows
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
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
CGG-public
Containers
Buildbox-Windows
Compare revisions
62998da9b9e4a3c9f62d3eb62a3202f93f67538c to cfad4967e338c146f3b5f3e1f8d760f875d1d294
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
CGG-public/containers/buildbox-windows
Select target project
No results found
cfad4967e338c146f3b5f3e1f8d760f875d1d294
Select Git revision
Branches
main
Tags
v0.0.1
v0.0.2
v0.0.3
4 results
Swap
Target
CGG-public/containers/buildbox-windows
Select target project
CGG-public/containers/buildbox-windows
1 result
62998da9b9e4a3c9f62d3eb62a3202f93f67538c
Select Git revision
Branches
main
Tags
v0.0.1
v0.0.2
v0.0.3
4 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add dummy cmake project
· 3dd85b65
Martin Heistermann
authored
2 months ago
3dd85b65
maybe or mayb enot fix
· cfad4967
Martin Heistermann
authored
2 months ago
cfad4967
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
CMakeLists.txt
+4
-0
4 additions, 0 deletions
CMakeLists.txt
test.cc
+6
-0
6 additions, 0 deletions
test.cc
with
12 additions
and
1 deletion
.gitignore
0 → 100644
View file @
cfad4967
/build*/
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
View file @
cfad4967
...
...
@@ -85,7 +85,7 @@ ensure-job-added:
script
:
-
|
route="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/pipelines/${CI_PIPELINE_ID}/jobs"
count=`curl --silent "$route" | jq 'map(select(.name | contains("component job of vs22-
cmake
"))) | length'`
count=`curl --silent "$route" | jq 'map(select(.name | contains("component job of vs22-
x64
"))) | length'`
if [ "$count" != "1" ]; then
echo "Count $count"
exit 1; else
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
0 → 100644
View file @
cfad4967
project
(
Test
)
add_executable
(
test test.cc
)
This diff is collapsed.
Click to expand it.
test.cc
0 → 100644
View file @
cfad4967
#include
<iostream>
int
main
(
int
argc
,
char
*
argv
[])
{
std
::
cout
<<
"Hello."
<<
std
::
endl
;
return
0
;
}
This diff is collapsed.
Click to expand it.