2019-12-17 08:03:41 -06:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
tags:
|
|
|
|
- 'v*.*'
|
|
|
|
- 'snapshot-*'
|
2022-04-09 08:01:23 -05:00
|
|
|
- 'tptlibsdev-*'
|
2019-12-17 08:03:41 -06:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
2022-08-23 04:14:06 -05:00
|
|
|
prepare:
|
2019-12-17 08:03:41 -06:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-03 10:32:03 -05:00
|
|
|
outputs:
|
2022-08-23 04:14:06 -05:00
|
|
|
release_upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
do_release: ${{ steps.prepare.outputs.do_release }}
|
|
|
|
matrix: ${{ steps.prepare.outputs.matrix }}
|
|
|
|
release_type: ${{ steps.prepare.outputs.release_type }}
|
|
|
|
release_name: ${{ steps.prepare.outputs.release_name }}
|
|
|
|
mod_id: ${{ steps.prepare.outputs.mod_id }}
|
|
|
|
do_publish: ${{ steps.prepare.outputs.do_publish }}
|
2019-12-17 08:03:41 -06:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
2021-04-12 14:02:57 -05:00
|
|
|
with:
|
2021-12-13 07:41:02 -06:00
|
|
|
python-version: '3.10'
|
2022-08-23 04:14:06 -05:00
|
|
|
- id: prepare
|
|
|
|
run: python ./.github/prepare.py
|
|
|
|
env:
|
|
|
|
PUBLISH_HOSTPORT: ${{ secrets.STARCATCHER_PUBLISH_HOSTPORT }}
|
|
|
|
GITHUB_REF: ${{ github.ref }}
|
|
|
|
- if: steps.prepare.outputs.do_release == 'yes'
|
|
|
|
id: create_release
|
2019-12-17 08:03:41 -06:00
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ github.ref }}
|
2022-08-23 04:14:06 -05:00
|
|
|
release_name: ${{ steps.prepare.outputs.release_name }}
|
2019-12-17 08:03:41 -06:00
|
|
|
draft: true
|
|
|
|
prerelease: false
|
|
|
|
build:
|
2022-08-23 04:14:06 -05:00
|
|
|
runs-on: ${{ matrix.runs_on }}
|
|
|
|
needs: [prepare]
|
2019-12-17 08:03:41 -06:00
|
|
|
strategy:
|
2022-04-09 08:01:23 -05:00
|
|
|
fail-fast: false
|
2022-08-23 04:14:06 -05:00
|
|
|
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
|
2019-12-17 08:03:41 -06:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
2021-04-12 14:02:57 -05:00
|
|
|
with:
|
2021-12-13 07:41:02 -06:00
|
|
|
python-version: '3.10'
|
2022-08-23 04:14:06 -05:00
|
|
|
- run: python -m pip install meson ninja
|
|
|
|
- if: matrix.bsh_build_platform == 'darwin'
|
|
|
|
run: brew install pkg-config coreutils binutils bash
|
|
|
|
- if: matrix.bsh_build_platform == 'darwin' && matrix.bsh_static_dynamic != 'static'
|
2019-12-17 08:03:41 -06:00
|
|
|
run: brew install luajit curl fftw zlib sdl2
|
2022-08-23 04:14:06 -05:00
|
|
|
- if: matrix.bsh_build_platform == 'linux' && matrix.bsh_host_libc == 'mingw'
|
|
|
|
run: sudo apt update && sudo apt install g++-mingw-w64-x86-64
|
|
|
|
- if: matrix.bsh_build_platform == 'linux' && matrix.bsh_static_dynamic != 'static'
|
2019-12-17 08:03:41 -06:00
|
|
|
run: sudo apt update && sudo apt install libluajit-5.1-dev libcurl4-openssl-dev libfftw3-dev zlib1g-dev libsdl2-dev
|
2022-08-23 04:14:06 -05:00
|
|
|
- if: matrix.bsh_build_platform == 'linux' && matrix.bsh_static_dynamic == 'static'
|
|
|
|
run: sudo apt update && sudo apt install libc6-dev libc6-dev-i386
|
2021-04-16 14:02:00 -05:00
|
|
|
- run: bash -c './.github/build.sh'
|
|
|
|
env:
|
2022-08-23 04:14:06 -05:00
|
|
|
BSH_HOST_ARCH: ${{ matrix.bsh_host_arch }}
|
|
|
|
BSH_HOST_PLATFORM: ${{ matrix.bsh_host_platform }}
|
|
|
|
BSH_HOST_LIBC: ${{ matrix.bsh_host_libc }}
|
|
|
|
BSH_STATIC_DYNAMIC: ${{ matrix.bsh_static_dynamic }}
|
|
|
|
BSH_BUILD_PLATFORM: ${{ matrix.bsh_build_platform }}
|
|
|
|
BSH_DEBUG_RELEASE: ${{ matrix.bsh_debug_release }}
|
|
|
|
RELEASE_NAME: ${{ needs.prepare.outputs.release_name }}
|
|
|
|
RELEASE_TYPE: ${{ needs.prepare.outputs.release_type }}
|
|
|
|
MOD_ID: ${{ needs.prepare.outputs.mod_id }}
|
|
|
|
ASSET_PATH: ${{ matrix.asset_path }}
|
|
|
|
DEBUG_ASSET_PATH: ${{ matrix.debug_asset_path }}
|
|
|
|
SEPARATE_DEBUG: ${{ matrix.separate_debug }}
|
|
|
|
- uses: actions/upload-release-asset@v1 # TODO-NTL: ship licenses
|
|
|
|
if: needs.prepare.outputs.do_release == 'yes' && matrix.publish == 'yes'
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.prepare.outputs.release_upload_url }}
|
|
|
|
asset_path: build/${{ matrix.asset_path }}
|
|
|
|
asset_name: ${{ matrix.asset_name }}
|
2019-12-17 08:03:41 -06:00
|
|
|
- uses: actions/upload-release-asset@v1
|
2022-08-23 04:14:06 -05:00
|
|
|
if: needs.prepare.outputs.do_release == 'yes' && matrix.publish == 'yes' && matrix.separate_debug == 'yes'
|
2019-12-17 08:03:41 -06:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2022-08-23 04:14:06 -05:00
|
|
|
upload_url: ${{ needs.prepare.outputs.release_upload_url }}
|
|
|
|
asset_path: build/${{ matrix.debug_asset_path }}
|
|
|
|
asset_name: ${{ matrix.debug_asset_name }}
|
2019-12-17 08:03:41 -06:00
|
|
|
- uses: actions/upload-artifact@v2
|
2022-08-23 04:14:06 -05:00
|
|
|
if: matrix.artifact == 'yes'
|
2019-12-17 08:03:41 -06:00
|
|
|
with:
|
2022-08-23 04:14:06 -05:00
|
|
|
path: build/${{ matrix.asset_path }}
|
|
|
|
name: ${{ matrix.asset_name }}
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
if: matrix.artifact == 'yes' && matrix.separate_debug == 'yes'
|
2021-04-04 15:09:16 -05:00
|
|
|
with:
|
2022-08-23 04:14:06 -05:00
|
|
|
path: build/${{ matrix.debug_asset_path }}
|
|
|
|
name: ${{ matrix.debug_asset_name }}
|
|
|
|
- if: needs.prepare.outputs.do_publish == 'yes' && matrix.publish == 'yes'
|
|
|
|
run: sudo apt update && sudo apt install lftp && bash -c './.github/starcatcher-publish.sh
|
2021-04-16 14:02:00 -05:00
|
|
|
env:
|
2022-08-23 04:14:06 -05:00
|
|
|
ASSET_PATH: build/${{ matrix.asset_path }}
|
|
|
|
PUBLISH_HOSTPORT: ${{ secrets.STARCATCHER_PUBLISH_HOSTPORT }}
|
|
|
|
PUBLISH_USERNAME: ${{ secrets.STARCATCHER_PUBLISH_USERNAME }}
|
|
|
|
PUBLISH_PASSWORD: ${{ secrets.STARCATCHER_PUBLISH_PASSWORD }}
|
|
|
|
PUBLISH_FILENAME: ${{ matrix.starcatcher_name }}
|
|
|
|
publish:
|
2021-04-04 15:09:16 -05:00
|
|
|
runs-on: ubuntu-latest
|
2022-08-23 04:14:06 -05:00
|
|
|
needs: [build, prepare]
|
|
|
|
if: needs.prepare.outputs.do_publish == 'yes'
|
2021-04-04 15:09:16 -05:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
2021-04-12 14:02:57 -05:00
|
|
|
with:
|
2021-12-13 07:41:02 -06:00
|
|
|
python-version: '3.10'
|
2022-08-23 04:14:06 -05:00
|
|
|
- run: ./.github/starcatcher-release.sh
|
|
|
|
env:
|
|
|
|
RELEASE_NAME: ${{ needs.prepare.outputs.release_name }}
|
|
|
|
RELEASE_TYPE: ${{ needs.prepare.outputs.release_type }}
|
|
|
|
MOD_ID: ${{ needs.prepare.outputs.mod_id }}
|
|
|
|
GITHUB_SHA: ${{ github.sha }}
|