diff --git a/.github/workflows/tcp-sanity-rh9.yml b/.github/workflows/tcp-sanity-rh9.yml index e50ad2575..767e26af4 100644 --- a/.github/workflows/tcp-sanity-rh9.yml +++ b/.github/workflows/tcp-sanity-rh9.yml @@ -29,6 +29,36 @@ jobs: ./validation.sh ./rmconfig.sh cd - + - run: | + cd cicd/tcplbmark/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/tcplbdsr1/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/tcplbdsr2/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/tcplbl3dsr/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/tcplbhash/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - - name: Clean test-bed if: success() || failure() run: | diff --git a/cicd/common/tcp_server.js b/cicd/common/tcp_server.js index ca6f6f588..0813382fd 100644 --- a/cicd/common/tcp_server.js +++ b/cicd/common/tcp_server.js @@ -1,5 +1,9 @@ var http = require('http'); +var port = 8080 +if (process.argv[3]) { + port = 2020 +} http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end(process.argv[2]); -}).listen(8080); +}).listen(port);