mirror of
https://github.com/hathach/tinyusb.git
synced 2025-04-16 05:42:56 +00:00
more ci test
This commit is contained in:
parent
b4ef98cbdc
commit
8a493485e8
2
.github/workflows/build_win_mac.yml
vendored
2
.github/workflows/build_win_mac.yml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
- name: Install ARM GCC
|
- name: Install ARM GCC
|
||||||
uses: carlosperate/arm-none-eabi-gcc-action@v1
|
uses: carlosperate/arm-none-eabi-gcc-action@v1
|
||||||
with:
|
with:
|
||||||
release: '12.2.Rel1'
|
release: '10.3-2021.10'
|
||||||
|
|
||||||
- name: Checkout TinyUSB
|
- name: Checkout TinyUSB
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -77,10 +77,9 @@ endif
|
|||||||
ifeq ($(CMDEXE),1)
|
ifeq ($(CMDEXE),1)
|
||||||
CP = copy
|
CP = copy
|
||||||
RM = del
|
RM = del
|
||||||
|
MKDIR = mkdir
|
||||||
PYTHON = python
|
PYTHON = python
|
||||||
MKDIR = cmd /e /c mkdir
|
|
||||||
else
|
else
|
||||||
SED = sed
|
|
||||||
CP = cp
|
CP = cp
|
||||||
RM = rm
|
RM = rm
|
||||||
MKDIR = mkdir
|
MKDIR = mkdir
|
||||||
|
@ -265,7 +265,11 @@ debug-bmp: $(BUILD)/$(PROJECT).elf
|
|||||||
|
|
||||||
# Create binary directory
|
# Create binary directory
|
||||||
$(BIN):
|
$(BIN):
|
||||||
|
ifeq ($(CMDEXE),1)
|
||||||
|
@$(MKDIR) $(subst /,\,$@)
|
||||||
|
else
|
||||||
@$(MKDIR) -p $@
|
@$(MKDIR) -p $@
|
||||||
|
endif
|
||||||
|
|
||||||
# Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload
|
# Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload
|
||||||
# due to large size of combined artifacts, only uf2 is uploaded for now
|
# due to large size of combined artifacts, only uf2 is uploaded for now
|
||||||
|
Loading…
x
Reference in New Issue
Block a user