Skip to content

Commit

Permalink
Adding GitHub CI for Windows MinGW key tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarske committed Oct 23, 2023
1 parent f5d9c62 commit e1787e3
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/test-keytools-msys2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Wolfboot keytools with MSYS2

on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]

jobs:

build:
runs-on: windows-latest

steps:
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: base-devel git
pacboy: toolchain:p

- name: git config
shell: bash
run: |
git config --global core.autocrlf input
- uses: actions/checkout@v3
with:
submodules: true

- name: Build tools
shell: msys2 {0}
run: |
make distclean
cp config/examples/sim.config .config
make include/target.h
make -C tools/keytools
make -C tools/bin-assemble
2 changes: 1 addition & 1 deletion lib/wolfssl
Submodule wolfssl updated 311 files

0 comments on commit e1787e3

Please sign in to comment.