rc3 #6
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: docker compose build | |
| run: docker compose build | |
| env: | |
| # Compose interpolates the whole file (including ros_portal's | |
| # required LIVEKIT_* vars) even when only building, so give it | |
| # placeholders. | |
| LIVEKIT_URL: ci-placeholder | |
| LIVEKIT_TOKEN: ci-placeholder |