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 <[email protected]>
  • Loading branch information
Ryanf55 committed Oct 19, 2024
1 parent 98e2faf commit 672bf25
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 672bf25

Please sign in to comment.