Skip to content

Goke/Hisi compile&binaries fixed. Commit version added in binary #14

Goke/Hisi compile&binaries fixed. Commit version added in binary

Goke/Hisi compile&binaries fixed. Commit version added in binary #14

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
sudo apt-get update
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC sudo apt-get -y install git make wget gcc libevent-dev libcsfml-dev file g++ cpio unzip rsync bc bzip2
./build.sh goke
./build.sh hisi
./build.sh star6b0
./build.sh star6e
./build.sh x86
- name: Upload binary
uses: actions/upload-artifact@v4
with:
path: |
msposd_goke
msposd_hisi
msposd_star6b0
msposd_star6e
msposd_x86
- name: Versioned release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: |
msposd_goke
msposd_hisi
msposd_star6b0
msposd_star6e
msposd_x86
- name: Upload latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: softprops/action-gh-release@v2
with:
tag_name: latest
files: |
msposd_goke
msposd_hisi
msposd_star6b0
msposd_star6e
msposd_x86