Skip to content

Commit

Permalink
GitHub Action - run on self-hosted runner (edge-example-ci)
Browse files Browse the repository at this point in the history
There's a new CI machine set up for this repo.
  • Loading branch information
JanneKiiskila committed Jan 10, 2024
1 parent 356f3c0 commit fe88fc0
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,26 @@ concurrency:

jobs:
make-examples:
runs-on: ubuntu-22.04
runs-on: edge-example-ci
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
sudo apt install doxygen
# Self hosted has dependencies in place already
# - 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
# sudo apt install doxygen
- name: git submodule update
run: git submodule update --init --recursive
# This builds release, debug and sanitize versions.
- run: make all

docker-build:
runs-on: ubuntu-22.04
runs-on: edge-example-ci
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
steps:
Expand Down

0 comments on commit fe88fc0

Please sign in to comment.