Skip to content

Commit

Permalink
[ACTIONS] Rework workflows for idiotic upload v4
Browse files Browse the repository at this point in the history
  • Loading branch information
darthcloud committed Sep 14, 2024
1 parent aae7331 commit 809fab8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
hw_version: [hw1, hw2]
br_config:
[3do, cdi, dreamcast, gamecube, gbahd, genesis, jaguar, jvs_arcade, n64, nes,
[common, 3do, cdi, dreamcast, gamecube, gbahd, genesis, jaguar, jvs_arcade, n64, nes,
parallel_1p, parallel_1p_3v3, parallel_2p, parallel_2p_3v3, pc_engine, pcfx,
playstation, saturn, snes, universal, virtualboy, wii_extension]
include:
Expand Down Expand Up @@ -43,18 +43,21 @@ jobs:
cat version.txt
cp configs/${{ matrix.hw_version }}/${{ matrix.br_config }} sdkconfig
BR_HW=_${{ matrix.hw_version }} BR_SYS=_${{ matrix.br_config }} idf.py reconfigure build
- name: Copy OTA initial binary
- name: Move common files
working-directory: ./build
if: ${{ matrix.br_config == 'common' }}
run: |
mkdir ota
mv ota_data_initial.bin ota/
mkdir common
mv bootloader/bootloader.bin common/
mv partition-table/partition-table.bin common/
mv ota_data_initial.bin common/
- name: Upload artifact
uses: darthcloud/upload-artifact@v4
uses: actions/upload-artifact@v4
with:
name: ${{ env.br_version }}_${{ matrix.hw_version }}
path: |
build/partition_table/partition-table.bin
build/bootloader/bootloader.bin
build/ota/ota_data_initial.bin
build/BlueRetro*.bin
${{ matrix.br_config }}/partition-table.bin
${{ matrix.br_config }}/bootloader.bin
${{ matrix.br_config }}/ota_data_initial.bin
build/BlueRetro_${{ matrix.hw_version }}_${{ matrix.br_config }}.bin
if-no-files-found: error
2 changes: 2 additions & 0 deletions configs/hw1/common
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONFIG_BLUERETRO_HW2=n
CONFIG_BLUERETRO_SYSTEM_PARALLEL_1P=y
1 change: 1 addition & 0 deletions configs/hw2/common
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONFIG_BLUERETRO_SYSTEM_PARALLEL_1P=y

0 comments on commit 809fab8

Please sign in to comment.