mirror of
https://github.com/jhbruhn/butns.git
synced 2025-07-01 17:08:49 +00:00
Move files around, add case build job test
This commit is contained in:
parent
6b55fe2c42
commit
0c3531d572
67 changed files with 24 additions and 1 deletions
23
.github/workflows/build-stls.yml
vendored
Normal file
23
.github/workflows/build-stls.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: Compile Firmware
|
||||||
|
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
compile-firmware:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Generate Models
|
||||||
|
uses: pkoehlers/openscad-build-action@v1
|
||||||
|
with:
|
||||||
|
input-file: 'hardware/case/case.scad'
|
||||||
|
output-file: 'case.stl'
|
||||||
|
- name: Archive
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: case
|
||||||
|
path: case.stl
|
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
||||||
[submodule "hardware/butns/case/YAPP_Box"]
|
[submodule "hardware/butns/case/YAPP_Box"]
|
||||||
path = hardware/butns/case/YAPP_Box
|
path = hardware/case/YAPP_Box
|
||||||
url = https://github.com/mrWheel/YAPP_Box.git
|
url = https://github.com/mrWheel/YAPP_Box.git
|
||||||
|
|
Loading…
Reference in a new issue