Skip to content

Commit

Permalink
.github: Add CI for dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com>
  • Loading branch information
Ryanf55 authored and Hwurzburg committed Oct 27, 2024
1 parent 44c1d7d commit df83096
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build dockerfile

on: [push, pull_request]

jobs:

build-docker:

runs-on: ubuntu-22.04
strategy:
fail-fast: false # don't cancel if a job from the matrix fails

steps:
- uses: actions/checkout@v4
- name: Build image
run: |
docker build . -t ardupilot_wiki --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g)

0 comments on commit df83096

Please sign in to comment.