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*
|
2024-05-07 00:14:03 +08:00
|
|
|
|
2023-12-16 23:35:56 +08:00
|
|
|
pull_request:
|
|
|
|
branches: [ "dev" ]
|
2024-05-09 06:11:17 +08:00
|
|
|
paths:
|
|
|
|
- '!**/*.md'
|
|
|
|
- 'tools/generate_emu_config/**'
|
2024-05-07 00:14:03 +08:00
|
|
|
|
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-28 08:15:39 +08:00
|
|
|
SCRIPT_BASE_DIR: "tools/generate_emu_config"
|
|
|
|
PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/package/linux"
|
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-27 03:19:45 +08:00
|
|
|
### fix folder permissions! not sure why this fails
|
|
|
|
# nested subdirs "build/linux/release" cause permission problems
|
|
|
|
- name: Give all permissions for repo folder
|
|
|
|
shell: bash
|
|
|
|
working-directory: ${{ github.workspace }}
|
|
|
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# deps
|
2023-12-16 13:20:05 +08:00
|
|
|
- name: Install dependencies
|
2023-12-16 15:55:36 +08:00
|
|
|
shell: bash
|
2023-12-26 08:14:37 +08:00
|
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
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
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# build
|
2023-12-16 13:20:05 +08:00
|
|
|
- name: Rebuild
|
2023-12-16 15:55:36 +08:00
|
|
|
shell: bash
|
2023-12-26 08:14:37 +08:00
|
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
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
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# package
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Package build
|
|
|
|
shell: bash
|
2023-12-26 08:14:37 +08:00
|
|
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
2023-12-17 07:58:52 +08:00
|
|
|
run: sudo chmod 77 package_linux.sh && sudo ./package_linux.sh
|
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# upload artifact
|
2023-12-17 07:58:52 +08:00
|
|
|
- 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 }}"
|
2023-12-28 08:15:39 +08:00
|
|
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
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
|
|
|
|
2024-01-01 01:53:11 +08:00
|
|
|
# release tag
|
2023-12-17 07:58:52 +08:00
|
|
|
- name: Release
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
2023-12-26 08:14:37 +08:00
|
|
|
files: "${{ env.PACKAGE_BASE_DIR }}/**/*"
|
2023-12-16 13:20:05 +08:00
|
|
|
|