Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
goSDN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
danet
goSDN
Merge requests
!209
Fix integration tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix integration tests
fix-integration-tests
into
develop
Overview
0
Commits
17
Pipelines
18
Changes
7
Merged
Ghost User
requested to merge
fix-integration-tests
into
develop
3 years ago
Overview
0
Commits
17
Pipelines
18
Changes
7
Expand
Closes
#146 (closed)
Description
Related Issue
Motivation and Context
How Has This Been Tested?
Screenshots (if appropriate):
Types of changes
Bug fix (non-breaking change which fixes an issue)
New feature (non-breaking change which adds functionality)
Breaking change (fix or feature that would cause existing functionality to change)
Checklist:
My code follows the code style of this project.
My change requires a change to the documentation.
I have updated the documentation accordingly.
I have read the
CONTRIBUTING
document.
I have added tests to cover my changes.
All new and existing tests passed.
Edited
3 years ago
by
Ghost User
0
0
Merge request reports
Compare
develop
version 16
85df3103
3 years ago
version 15
1c3941dd
3 years ago
version 14
f0ddf08e
3 years ago
version 13
a19e00b6
3 years ago
version 12
419643f7
3 years ago
version 11
33b70f8b
3 years ago
version 10
c50c1109
3 years ago
version 9
f9a79f23
3 years ago
version 8
090b7cba
3 years ago
version 7
3cbfc1d5
3 years ago
version 6
8a6df261
3 years ago
version 5
f133385f
3 years ago
version 4
4b82ba68
3 years ago
version 3
7683b2dd
3 years ago
version 2
37e37e32
3 years ago
version 1
7738b5ee
3 years ago
develop (base)
and
latest version
latest version
f9f78aa3
17 commits,
3 years ago
version 16
85df3103
16 commits,
3 years ago
version 15
1c3941dd
15 commits,
3 years ago
version 14
f0ddf08e
14 commits,
3 years ago
version 13
a19e00b6
13 commits,
3 years ago
version 12
419643f7
12 commits,
3 years ago
version 11
33b70f8b
11 commits,
3 years ago
version 10
c50c1109
10 commits,
3 years ago
version 9
f9a79f23
9 commits,
3 years ago
version 8
090b7cba
8 commits,
3 years ago
version 7
3cbfc1d5
7 commits,
3 years ago
version 6
8a6df261
6 commits,
3 years ago
version 5
f133385f
5 commits,
3 years ago
version 4
4b82ba68
4 commits,
3 years ago
version 3
7683b2dd
3 commits,
3 years ago
version 2
37e37e32
2 commits,
3 years ago
version 1
7738b5ee
1 commit,
3 years ago
7 files
+
10
−
39
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/.containerlab-ci.yml
+
2
−
7
Options
@@ -40,7 +40,7 @@ variables:
containerlab:template:integration
:
extends
:
.containerlab_template
variables
:
CLAB_TEMPLATE
:
"
${CI_PROJECT_DIR}/test/containerlab/
complex-1.0
.clab.tmpl.yml"
CLAB_TEMPLATE
:
"
${CI_PROJECT_DIR}/test/containerlab/
int01
.clab.tmpl.yml"
containerlab:deploy:integration
:
@@ -52,12 +52,7 @@ containerlab:deploy:integration:
echo -e "\
GOSDN_HTTP_PORT=$(docker_host_port 8080 clab-${CLAB_NAME}-gosdn)\n\
GOSDN_GRPC_PORT=$(docker_host_port 55055 clab-${CLAB_NAME}-gosdn)\n\
CEOS1_1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos1-1)\n\
CEOS1_2_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos1-2)\n\
CEOS2_1_1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-1-1)\n\
CEOS2_1_2_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-1-2)\n\
CEOS2_2_1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-2-1)\n\
CEOS2_2_2_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-2-2)" \
CEOS1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos1)" \
> ${CI_PROJECT_DIR}/build.env
-
cat ${CI_PROJECT_DIR}/build.env
artifacts
:
Loading