Skip to content

Commit 7c5250d

Browse files
committed
Add arm ubuntu build
1 parent 2eb91c3 commit 7c5250d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,19 @@ jobs:
3030
include:
3131
- target: x86_64-unknown-linux-gnu
3232
os: ubuntu-latest
33+
- target: armv7-unknown-linux-gnueabihf
34+
os: ubuntu-latest
3335
runs-on: ${{ matrix.os }}
3436
steps:
3537

3638
- name: Checkout sources
3739
uses: actions/[email protected]
3840

39-
- uses: Swatinem/[email protected]
41+
- name: Install compiler for armhf arch
42+
if: matrix.target == 'armv7-unknown-linux-gnueabihf'
43+
run: |
44+
sudo apt-get update
45+
sudo apt-get install gcc-arm-linux-gnueabihf
4046
4147
- name: Build binary
4248
run: |

0 commit comments

Comments
 (0)