Skip to content

Commit

Permalink
github: Add action for checking PR in developers forks
Browse files Browse the repository at this point in the history
Enable github actions that build any branches using docker along helper script.
To avoid bringing more ambiguity or complexity
most tasks are isolated at lowerlevel (in helper for cmake).

Relate-to: https://github.com/rzr/wisun-br-linux/actions/runs/11687351317/job/32545249359
Signed-off-by: Philippe Coval <philippe.coval@silabs.com>
  • Loading branch information
rzr committed Nov 5, 2024
1 parent 7bdfa26 commit 5d06b7c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# YAML -*- mode: yaml; tab-width: 2; indent-tabs-mode: nil; coding: utf-8 -*-
# SPDX-License-Identifier: LicenseRef-MSLA
# SPDX-Copyright-Text: (c) 2024 Silicon Laboratories Inc. (www.silabs.com)
---
name: Docker Image CI

on: # yamllint disable-line rule:truthy
push:
pull_request:

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Build Docker image from sources
run: docker build .

0 comments on commit 5d06b7c

Please sign in to comment.