Skip to content

Commit

Permalink
Merge pull request #132 from EpicGamesExt/backport/UE5.5/pr-131
Browse files Browse the repository at this point in the history
[UE5.5] Merge pull request #131 from mcottontensor/presubmit_extras
  • Loading branch information
mcottontensor authored May 23, 2024
2 parents cf22ff7 + 44d5052 commit dd44dee
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/run-presubmit-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,43 @@ jobs:
- working-directory: Frontend/ui-library
run: npm ci && npm link ../library && npm run build && npm run lint

run-linux:
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: actions/checkout@v3
- name: "Launch and query signalling server using the REST API"
working-directory: SignallingWebServer
run: |
./platform_scripts/bash/start.sh --rest_api &
curl --retry 10 --retry-delay 20 --retry-connrefused http://localhost/api/status
run-windows:
runs-on: windows-latest
steps:
- name: "Checkout source code"
uses: actions/checkout@v3
- name: "Launch and query signalling server using the REST API"
working-directory: SignallingWebServer
run: |
Start-Process -NoNewWindow .\platform_scripts\cmd\start.bat --rest_api
curl --retry 10 --retry-delay 20 --retry-connrefused http://localhost/api/status
build-docker-images:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build the Signalling Server container image
uses: docker/build-push-action@v3
with:
context: .
push: false
file: SignallingWebServer/Dockerfile
- name: Build the SFU container image
uses: docker/build-push-action@v3
with:
context: .
push: false
file: SFU/Dockerfile

1 change: 1 addition & 0 deletions SignallingWebServer/platform_scripts/cmd/start.bat
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ goto :eof
:PrintConfig
:StartWilbur
"%~dp0common.bat" %*

0 comments on commit dd44dee

Please sign in to comment.