Skip to content

Commit a22f8bc

Browse files
dgarskedanielinux
authored andcommitted
Adding GitHub CI for Windows MinGW key tools.
1 parent 798993d commit a22f8bc

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Wolfboot keytools with MSYS2
2+
3+
on:
4+
push:
5+
branches: [ 'master', 'main', 'release/**' ]
6+
pull_request:
7+
branches: [ '*' ]
8+
9+
jobs:
10+
11+
build:
12+
runs-on: windows-latest
13+
14+
steps:
15+
- name: Setup MSYS2
16+
uses: msys2/setup-msys2@v2
17+
with:
18+
msystem: MINGW64
19+
update: true
20+
install: base-devel git
21+
pacboy: toolchain:p
22+
23+
- name: git config
24+
shell: bash
25+
run: |
26+
git config --global core.autocrlf input
27+
28+
- uses: actions/checkout@v3
29+
with:
30+
submodules: true
31+
32+
- name: Build tools
33+
shell: msys2 {0}
34+
run: |
35+
make distclean
36+
cp config/examples/sim.config .config
37+
make include/target.h
38+
make -C tools/keytools
39+
make -C tools/bin-assemble

lib/wolfssl

Submodule wolfssl updated 311 files

0 commit comments

Comments
 (0)