Skip to content

Commit

Permalink
GitHub action - make
Browse files Browse the repository at this point in the history
Initial action to make all.
  • Loading branch information
JanneKiiskila committed Dec 11, 2023
1 parent 6cba392 commit 567c439
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: mbed-edge-examples-make

on:
workflow_dispatch:
push:
paths-ignore:
- '**/README.md'

# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
make-examples:
runs-on: ubuntu-22.04
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
steps:
- name: Checkout continuous-integration
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt install build-essential git libc6-dev
sudo apt install libmosquitto-dev mosquitto-clients
sudo apt install libglib2.0-dev
- name: git submodule update
run: git submodule update --init --recursive
# This builds release, debug and sanitize versions.
- run: make all

0 comments on commit 567c439

Please sign in to comment.