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 cd68f6c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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
- run: make

0 comments on commit cd68f6c

Please sign in to comment.