more ci test

This commit is contained in:
hathach 2023-03-05 13:39:38 +07:00
parent b4ef98cbdc
commit 8a493485e8
No known key found for this signature in database
GPG Key ID: F5D50C6D51D17CBA
3 changed files with 6 additions and 3 deletions

View File

@ -44,7 +44,7 @@ jobs:
- name: Install ARM GCC
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '12.2.Rel1'
release: '10.3-2021.10'
- name: Checkout TinyUSB
uses: actions/checkout@v3

View File

@ -77,10 +77,9 @@ endif
ifeq ($(CMDEXE),1)
CP = copy
RM = del
MKDIR = mkdir
PYTHON = python
MKDIR = cmd /e /c mkdir
else
SED = sed
CP = cp
RM = rm
MKDIR = mkdir

View File

@ -265,7 +265,11 @@ debug-bmp: $(BUILD)/$(PROJECT).elf
# Create binary directory
$(BIN):
ifeq ($(CMDEXE),1)
@$(MKDIR) $(subst /,\,$@)
else
@$(MKDIR) -p $@
endif
# Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload
# due to large size of combined artifacts, only uf2 is uploaded for now