Logging subsystem #231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deb | |
on: [push, pull_request] | |
jobs: | |
builds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.20' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.13.0 | |
- uses: actions/cache@v4.2.0 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Install | |
run: yarn | |
- name: go | |
run: make go | |
- name: pi | |
run: make pi | |
- name: pi-zero | |
run: make pi-zero | |
- name: bundler | |
run: gem install bundler -v 2.4 --no-document | |
- name: fpm | |
run: bundle install | |
- name: deb | |
run: make pi_deb |