Skip to content

Commit 8a49348

Browse files
committed
more ci test
1 parent b4ef98c commit 8a49348

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build_win_mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install ARM GCC
4545
uses: carlosperate/arm-none-eabi-gcc-action@v1
4646
with:
47-
release: '12.2.Rel1'
47+
release: '10.3-2021.10'
4848

4949
- name: Checkout TinyUSB
5050
uses: actions/checkout@v3

examples/make.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,9 @@ endif
7777
ifeq ($(CMDEXE),1)
7878
CP = copy
7979
RM = del
80+
MKDIR = mkdir
8081
PYTHON = python
81-
MKDIR = cmd /e /c mkdir
8282
else
83-
SED = sed
8483
CP = cp
8584
RM = rm
8685
MKDIR = mkdir

examples/rules.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,11 @@ debug-bmp: $(BUILD)/$(PROJECT).elf
265265

266266
# Create binary directory
267267
$(BIN):
268+
ifeq ($(CMDEXE),1)
269+
@$(MKDIR) $(subst /,\,$@)
270+
else
268271
@$(MKDIR) -p $@
272+
endif
269273

270274
# Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload
271275
# due to large size of combined artifacts, only uf2 is uploaded for now

0 commit comments

Comments
 (0)