update libusb #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WIN build | |
on: | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
name: Windows | |
env: | |
CMSIS: CMSIS_5 | |
runs-on: windows-latest | |
steps: | |
- name: ARM GCC setup | |
uses: fiam/arm-none-eabi-gcc@v1 | |
with: | |
release: 8-2019-q3 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Resolve prerequisites | |
run: make prerequisites | |
- name: Build firmware | |
run: make stm32f103x8 SHELL=cmd | |
- name: Build encrypter | |
run: make crypter SHELL=cmd SWTOOLS= | |
- name: Build testsuite | |
run: make testsuite SHELL=cmd SWTOOLS= | |
- name: Vector test | |
run: build/cipher_test |