Basic build and upload for dashboad #1614
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: api-server | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/api-server.yml' | |
- 'packages/api-server/**' | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CI: true | |
PIPENV_VERBOSITY: -1 | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-24.04 | |
container: | |
image: ghcr.io/${{ github.repository }}/minimal-rmf | |
credentials: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: packages/api-server | |
steps: | |
- uses: actions/checkout@v4 | |
- name: bootstrap | |
uses: ./.github/actions/bootstrap | |
with: | |
package: api-server | |
- name: tests | |
run: | | |
. /opt/rmf/setup.bash | |
pnpm run lint | |
pnpm run test:cov -v | |
../../.venv/bin/python -m coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
flags: api-server | |
build-docker-image: | |
# needs: tests | |
name: Push Docker images to GitHub Packages | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to docker | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
build-args: | | |
BASE_IMAGE=ghcr.io/${{ github.repository }}/minimal-rmf | |
ROS_DISTRO=jazzy | |
tags: ghcr.io/${{ github.repository }}/api-server | |
context: .github/api-server |