Skip to content

Commit 38afcf4

Browse files
committed
initial CI builds for push to main
1 parent 9fe9e32 commit 38afcf4

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/build-firmware.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: build-firmware
2+
on:
3+
push:
4+
branches: [ main, actions ]
5+
jobs:
6+
build-in-container:
7+
runs-on: ubuntu-latest
8+
container:
9+
image: lukstep/raspberry-pi-pico-sdk:v0.0.2
10+
steps:
11+
- name: Check out code
12+
uses: actions/checkout@v2
13+
- name: pwd
14+
run: pwd
15+
- name: ls
16+
run: ls -al
17+
- name: build
18+
run: ./b.sh

b.sh

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/bash
2-
31
cd external
42
rm -rf build
53
mkdir build

0 commit comments

Comments
 (0)