mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-14 04:18:56 +00:00
limit artifact to only uf2 for now
due to the large size of combined binaries of all boards + all examples
This commit is contained in:
parent
0a673de78a
commit
c2d8aa0584
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -62,14 +62,10 @@ jobs:
|
||||
- name: Build
|
||||
run: python3 tools/build_family.py ${{ matrix.family }}
|
||||
|
||||
- name: test
|
||||
run: |
|
||||
ls -a _bin/*
|
||||
|
||||
#- uses: actions/upload-artifact@v2
|
||||
# with:
|
||||
# name: ${{ matrix.family }}
|
||||
# path: _bin/
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ matrix.family }}
|
||||
path: _bin/
|
||||
#TODO upload release assest upload
|
||||
|
||||
# Build all no-family (opharned) boards
|
||||
|
@ -219,9 +219,10 @@ $(BIN):
|
||||
@$(MKDIR) -p $@
|
||||
|
||||
# Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload
|
||||
# due to large size of combined artifacts, only uf2 is uploaded for now
|
||||
copy-artifact: $(BIN)
|
||||
@$(CP) $(BUILD)/$(PROJECT).elf $(BIN)
|
||||
@$(CP) $(BUILD)/$(PROJECT).bin $(BIN)
|
||||
@$(CP) $(BUILD)/$(PROJECT).hex $(BIN)
|
||||
@$(CP) $(BUILD)/$(PROJECT).uf2 $(BIN)
|
||||
#@$(CP) $(BUILD)/$(PROJECT).bin $(BIN)
|
||||
#@$(CP) $(BUILD)/$(PROJECT).hex $(BIN)
|
||||
#@$(CP) $(BUILD)/$(PROJECT).elf $(BIN)
|
||||
|
||||
|
@ -66,7 +66,7 @@ def build_board(example, board):
|
||||
skip_count += 1
|
||||
print(build_format.format(example, board, success, '-', flash_size, sram_size))
|
||||
else:
|
||||
subprocess.run("make -C examples/{} BOARD={} clean".format(example, board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||
#subprocess.run("make -C examples/{} BOARD={} clean".format(example, board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||
build_result = subprocess.run("make -j -C examples/{} BOARD={} all".format(example, board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||
|
||||
if build_result.returncode == 0:
|
||||
|
Loading…
x
Reference in New Issue
Block a user