try automatic builds #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "pre-release" | |
on: | |
push: | |
branches: | |
- "libretro_build" | |
jobs: | |
pre-release: | |
name: "Pre Release" | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y make git sed zip | |
sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross | |
sudo apt-get install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
# use the actual libretro git hash as libretro_build is always rebased | |
sed -i -e "s/\<HEAD\>/HEAD^/" Makefile.libretro | |
grep HEAD Makefile.libretro | |
.github/build-libretro-zip.sh arm64 CortexA73_G12B | |
.github/build-libretro-zip.sh arm32 rpi1 | |
.github/build-libretro-zip.sh arm32 rpi2 | |
.github/build-libretro-zip.sh arm32 rpi3 | |
.github/build-libretro-zip.sh arm64 rpi3_64 | |
.github/build-libretro-zip.sh arm32 rpi4 | |
.github/build-libretro-zip.sh arm64 rpi4_64 | |
.github/build-libretro-zip.sh arm32 classic_armv7_a7 | |
.github/build-libretro-zip.sh arm32 classic_armv8_a35 | |
.github/build-libretro-zip.sh arm32 miyoo | |
- uses: "marvinpinto/action-automatic-releases@v1.2.1" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "libretro-devbuild" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
pcsx_rearmed_libretro_arm64_CortexA73_G12B.zip | |
pcsx_rearmed_libretro_arm32_rpi1.zip | |
pcsx_rearmed_libretro_arm32_rpi2.zip | |
pcsx_rearmed_libretro_arm32_rpi3.zip | |
pcsx_rearmed_libretro_arm64_rpi3_64.zip | |
pcsx_rearmed_libretro_arm32_rpi4.zip | |
pcsx_rearmed_libretro_arm64_rpi4_64.zip | |
pcsx_rearmed_libretro_arm32_classic_armv7_a7.zip | |
pcsx_rearmed_libretro_arm32_classic_armv8_a35.zip | |
pcsx_rearmed_libretro_arm32_miyoo.zip |