Skip to content

Commit 028b51d

Browse files
authored
Merge pull request #2 from purduehackers/jack/rewrite
Rewrite phone bells
2 parents 8cf88bb + 3e948db commit 028b51d

File tree

24 files changed

+13717
-2685
lines changed

24 files changed

+13717
-2685
lines changed

.github/workflows/build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build Pi software
2+
3+
on:
4+
push: {}
5+
pull_request: {}
6+
workflow_dispatch: {}
7+
8+
jobs:
9+
build:
10+
name: Build
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out sources
14+
uses: actions/checkout@v6
15+
with:
16+
sparse-checkout: |
17+
Software
18+
19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v3
21+
22+
- name: Build binary
23+
run: ./build-rpi.sh
24+
working-directory: Software
25+
26+
- name: Upload binary
27+
uses: actions/upload-artifact@v6
28+
with:
29+
name: phone-bell-software-arm64
30+
path: Software/phone-bell-software-arm64
31+
if-no-files-found: error
32+
compression-level: 0

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
Electronics/Electronics-backups/*
2-
Electronics/production/*
2+
Electronics/production/*
3+
4+
node_modules/
5+
dist/
6+
.env

0 commit comments

Comments
 (0)