2023-12-16 23:50:30 +08:00
|
|
|
name: Generate emu config script (Linux)
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-12-16 23:35:56 +08:00
|
|
|
branches: [
|
2023-12-17 07:58:52 +08:00
|
|
|
"ci-build-gen-linux*",
|
2023-12-16 23:35:56 +08:00
|
|
|
"ci-build-all"
|
|
|
|
]
|
2023-12-17 07:58:52 +08:00
|
|
|
tags:
|
|
|
|
- release*
|
2023-12-16 23:35:56 +08:00
|
|
|
pull_request:
|
|
|
|
branches: [ "dev" ]
|
2023-12-17 07:58:52 +08:00
|
|
|
workflow_dispatch:
|
2023-12-20 21:07:01 +08:00
|
|
|
# allows manual trigger
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
permissions:
|
2023-12-17 07:58:52 +08:00
|
|
|
contents: write
|
|
|
|
|
|
|
|
env:
|
|
|
|
ARTIFACT_NAME: "generate_emu_config-linux-${{ github.sha }}"
|
2023-12-25 04:52:43 +08:00
|
|
|
PACKAGE_ROOT_PATH: "script_generate_emu_config/bin/package"
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-12-16 15:55:36 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
steps:
|
2023-12-16 13:25:21 +08:00
|
|
|
- name: Checkout branch
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2023-12-16 13:20:05 +08:00
|
|
|
- name: Install dependencies
|
2023-12-16 15:55:36 +08:00
|
|
|
shell: bash
|
2023-12-25 04:52:43 +08:00
|
|
|
working-directory: ${{ github.workspace }}/script_generate_emu_config
|
2023-12-16 15:59:59 +08:00
|
|
|
run: sudo chmod 77 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh
|
2023-12-16 13:20:05 +08:00
|
|
|
|
|
|
|
- name: Rebuild
|
2023-12-16 15:55:36 +08:00
|
|
|
shell: bash
|
2023-12-25 04:52:43 +08:00
|
|
|
working-directory: ${{ github.workspace }}/script_generate_emu_config
|
2023-12-16 15:59:59 +08:00
|
|
|
run: sudo chmod 77 rebuild_linux.sh && sudo ./rebuild_linux.sh
|
2023-12-16 13:20:05 +08:00
|
|
|
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Package build
|
|
|
|
shell: bash
|
2023-12-25 04:52:43 +08:00
|
|
|
working-directory: ${{ github.workspace }}/script_generate_emu_config
|
2023-12-17 07:58:52 +08:00
|
|
|
run: sudo chmod 77 package_linux.sh && sudo ./package_linux.sh
|
|
|
|
|
|
|
|
- name: Upload build package
|
2023-12-16 13:20:05 +08:00
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
2023-12-17 07:58:52 +08:00
|
|
|
name: "${{ env.ARTIFACT_NAME }}"
|
|
|
|
path: "${{ env.PACKAGE_ROOT_PATH }}/linux/"
|
2023-12-16 13:20:05 +08:00
|
|
|
if-no-files-found: 'error'
|
|
|
|
compression-level: 9
|
2023-12-16 23:35:20 +08:00
|
|
|
retention-days: 1
|
2023-12-17 07:58:52 +08:00
|
|
|
|
|
|
|
- name: Release
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
files: "${{ env.PACKAGE_ROOT_PATH }}/**/*"
|
2023-12-16 13:20:05 +08:00
|
|
|
|