This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
Add new Common and signalling libs and rewrite Cirrus (now Wilbur) to use them #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run signalling tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: ['UE5.5'] | |
paths: ['Common/**', 'SignallingWebServer/**', 'SS_Test/**'] | |
pull_request: | |
branches: ['UE5.5'] | |
paths: ['Common/**', 'SignallingWebServer/**', 'SS_Test/**'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
permissions: | |
contents: write | |
steps: | |
- name: "Checkout source code" | |
uses: actions/checkout@v3 | |
- name: "Docker compose" | |
uses: isbang/[email protected] | |
with: | |
compose-file: "SS_Test/docker-compose.yml" | |
up-flags: "--build --abort-on-container-exit --exit-code-from tester" |