Skip to content

Commit

Permalink
CI workflow: final draft
Browse files Browse the repository at this point in the history
  • Loading branch information
azyablov committed May 1, 2023
1 parent 507e82d commit 788bca9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
run: go version
- name: docker_version
run: docker -v
- name: Pulling_SR_Linux_image
- name: Pulling_docker_images
run: |
docker pull ghcr.io/hellt/network-multitool
docker pull ghcr.io/nokia/srlinux:22.11.2
- name: unit_tests
- name: Unit_tests
run: go test -v
- name: clab_installation
run: bash -c "$(curl -sL https://get.containerlab.dev)" -- -v $CLAB_VER
Expand All @@ -40,8 +40,8 @@ jobs:
- name: Integration_tests
if: ${{ success() }}
run: |
ls -l -R _clab
#go test --tags integration -v
go test --tags integration -v
Expand Down
10 changes: 5 additions & 5 deletions testdata/integration_tests_params.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"port": 443,
"tls_attr": {
"skip_verify": false,
"cert_file": "./_clab/clab-evpn/ca/spine1/spine1.pem",
"key_file": "./_clab/clab-evpn/ca/spine1/spine1-key.pem",
"ca_file": "./_clab/clab-evpn/ca/root/root-ca.pem"
"cert_file": "./_clab/clab-evpn/.tls/spine1/spine1.pem",
"key_file": "./_clab/clab-evpn/.tls/spine1/spine1.key",
"ca_file": "./_clab/clab-evpn/.tls/ca/ca.pem"
}
},
"cert_target_incorrect_ca": {
Expand All @@ -27,8 +27,8 @@
"port": 443,
"tls_attr": {
"skip_verify": false,
"cert_file": "./_clab/clab-evpn/ca/spine1/spine1.pem",
"key_file": "./_clab/clab-evpn/ca/spine1/spine1-key.pem",
"cert_file": "./_clab/clab-evpn/.tls/spine1/spine1.pem",
"key_file": "./_clab/clab-evpn/.tls/spine1/spine1.key",
"ca_file": "./_clab/incorrect-root-ca.pem"
}
}
Expand Down

0 comments on commit 788bca9

Please sign in to comment.