Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run linux test on testfile:8080 (alias for localhost) to fix the linux test run #3016

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/actions/setup-integration-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ runs:
- name: Clean Install
run: npm ci
shell: bash
- name: Add localhost 8080 host to /etc/hosts for Linux only
- name: Add testsite host to /etc/hosts for Linux only (fixes 500 internal error when loading the test page)
shell: bash
if: runner.os == 'Linux'
run: |
sudo echo "127.0.0.1 testsite" | sudo tee -a /etc/hosts


sudo echo "127.0.0.1 testsite" | sudo tee -a /etc/hosts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noOfThreads": 1,
"testImpl": "AudioTest.js",
"payload": {
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "ContentShareScreenCapture.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noOfThreads": 1,
"testImpl": "ContentShareVideoTest.js",
"payload": {
"url": "http://localhost:8080/",
"url": "http://testsite:8080/",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "DataMessageTest.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "MeetingEndTest.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "VideoTest.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Loading