mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 11:15:34 +08:00
formatted the .yml workflows, updated the python version of migrate_gse to v3.12 and updated softprops/action-gh-release to v2
This commit is contained in:
parent
971e60c85d
commit
1b68c4bb0e
92
.github/workflows/emu-build-all-linux.yml
vendored
92
.github/workflows/emu-build-all-linux.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Build emu (Linux)
|
name: "Build emu (Linux)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,26 +7,26 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PREMAKE_ACTION: gmake2
|
PREMAKE_ACTION: "gmake2"
|
||||||
DEPS_CACHE_KEY: emu-deps-linux
|
DEPS_CACHE_KEY: "emu-deps-linux"
|
||||||
DEPS_CACHE_DIR: build/deps/linux
|
DEPS_CACHE_DIR: "build/deps/linux"
|
||||||
|
|
||||||
PACKAGE_BASE_DIR: "build/package/linux"
|
PACKAGE_BASE_DIR: "build/package/linux"
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deps:
|
deps:
|
||||||
name: Restore or build deps
|
name: "Restore or build deps"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/emu-deps-linux.yml
|
uses: "./.github/workflows/emu-deps-linux.yml"
|
||||||
|
|
||||||
builds-matrix-linux:
|
builds-matrix-linux:
|
||||||
name: build
|
name: "build"
|
||||||
needs: [ deps ]
|
needs: ["deps"]
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
@ -35,60 +35,62 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
prj: [
|
prj: [
|
||||||
# regular api
|
# regular api
|
||||||
'api_regular', 'steamclient_regular',
|
"api_regular",
|
||||||
|
"steamclient_regular",
|
||||||
# api + client (experimental)
|
# api + client (experimental)
|
||||||
'api_experimental', 'steamclient_experimental',
|
"api_experimental",
|
||||||
|
"steamclient_experimental",
|
||||||
# tools
|
# tools
|
||||||
'tool_lobby_connect', 'tool_generate_interfaces',
|
"tool_lobby_connect",
|
||||||
|
"tool_generate_interfaces",
|
||||||
]
|
]
|
||||||
arch: [ 'x64', 'x32', ]
|
arch: ["x64", "x32"]
|
||||||
cfg: [ 'debug', 'release', ]
|
cfg: ["debug", "release"]
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
### clone branch
|
# clone branch
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
### deps
|
# deps
|
||||||
- name: Restore deps
|
- name: "Restore deps"
|
||||||
id: emu-deps-cache-step
|
id: "emu-deps-cache-step"
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
|
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
|
||||||
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
|
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
|
||||||
|
|
||||||
## extra helpers/tools, these are not built inside the deps build dir
|
# extra helpers/tools, these are not built inside the deps build dir
|
||||||
- name: Clone third-party build helpers (common/linux)
|
- name: "Clone third-party build helpers (common/linux)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/common/linux'
|
ref: "third-party/common/linux"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/linux"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/linux"
|
||||||
|
|
||||||
- name: Clone third-party build helpers (build/linux)
|
- name: "Clone third-party build helpers (build/linux)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/build/linux'
|
ref: "third-party/build/linux"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/linux"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/linux"
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
### generate project files
|
# generate project files
|
||||||
- name: Generate project files
|
- name: "Generate project files"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
sudo chmod 777 ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5
|
sudo chmod 777 ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5
|
||||||
./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5.lua --genproto --emubuild=${{ github.sha }} --os=linux gmake2
|
./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5.lua --genproto --emubuild=${{ github.sha }} --os=linux gmake2
|
||||||
|
|
||||||
## mandatory Linux packages
|
# mandatory Linux packages
|
||||||
- name: Install required packages
|
- name: "Install required packages"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
run: |
|
run: |
|
||||||
sudo apt update -y
|
sudo apt update -y
|
||||||
sudo apt install -y coreutils # echo, printf, etc...
|
sudo apt install -y coreutils # echo, printf, etc...
|
||||||
@ -100,22 +102,22 @@ jobs:
|
|||||||
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
|
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
|
||||||
# sudo apt install -y binutils # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff
|
# sudo apt install -y binutils # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff
|
||||||
|
|
||||||
### build target
|
# build target
|
||||||
- name: Build target
|
- name: "Build target"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}/build/project/gmake2/linux
|
working-directory: "${{ github.workspace }}/build/project/gmake2/linux"
|
||||||
run: |
|
run: |
|
||||||
echo "dry run..."
|
echo "dry run..."
|
||||||
make -n -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
|
make -n -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
|
||||||
echo "actual run..."
|
echo "actual run..."
|
||||||
make -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
|
make -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
|
||||||
|
|
||||||
### upload artifact/package to github Actions
|
# upload artifact/package to github Actions
|
||||||
- name: Upload target package
|
- name: "Upload target package"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "emu-linux-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
|
name: "emu-linux-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
|
||||||
path: "build/linux"
|
path: "build/linux"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
96
.github/workflows/emu-build-all-win.yml
vendored
96
.github/workflows/emu-build-all-win.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Build emu (Windows)
|
name: "Build emu (Windows)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,25 +7,25 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PREMAKE_ACTION: vs2022
|
PREMAKE_ACTION: "vs2022"
|
||||||
DEPS_CACHE_KEY: emu-deps-win
|
DEPS_CACHE_KEY: "emu-deps-win"
|
||||||
DEPS_CACHE_DIR: build/deps/win
|
DEPS_CACHE_DIR: "build/deps/win"
|
||||||
|
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deps:
|
deps:
|
||||||
name: Restore or build deps
|
name: "Restore or build deps"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/emu-deps-win.yml
|
uses: "./.github/workflows/emu-deps-win.yml"
|
||||||
|
|
||||||
builds-matrix-win:
|
builds-matrix-win:
|
||||||
name: build
|
name: "build"
|
||||||
needs: [ deps ]
|
needs: ["deps"]
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
@ -34,77 +34,81 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
prj: [
|
prj: [
|
||||||
# regular api
|
# regular api
|
||||||
'api_regular',
|
"api_regular",
|
||||||
# (experimental) api + client
|
# (experimental) api + client
|
||||||
'api_experimental', 'steamclient_experimental_stub',
|
"api_experimental",
|
||||||
|
"steamclient_experimental_stub",
|
||||||
# client (experimental) + loader + extra dll + gameoverlaylib
|
# client (experimental) + loader + extra dll + gameoverlaylib
|
||||||
'steamclient_experimental', 'steamclient_experimental_loader',
|
"steamclient_experimental",
|
||||||
'steamclient_experimental_extra', 'lib_game_overlay_renderer',
|
"steamclient_experimental_loader",
|
||||||
|
"steamclient_experimental_extra",
|
||||||
|
"lib_game_overlay_renderer",
|
||||||
# tools
|
# tools
|
||||||
'tool_lobby_connect', 'tool_generate_interfaces',
|
"tool_lobby_connect",
|
||||||
|
"tool_generate_interfaces",
|
||||||
]
|
]
|
||||||
arch: [ 'x64', 'Win32', ]
|
arch: ["x64", "Win32"]
|
||||||
cfg: [ 'debug', 'release', ]
|
cfg: ["debug", "release"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
### on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
### ensure we have msbuild
|
# ensure we have msbuild
|
||||||
- name: Add MSBuild to PATH
|
- name: "Add MSBuild to PATH"
|
||||||
uses: microsoft/setup-msbuild@v2
|
uses: microsoft/setup-msbuild@v2
|
||||||
|
|
||||||
### clone branch
|
# clone branch
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
### deps
|
# deps
|
||||||
- name: Restore deps
|
- name: "Restore deps"
|
||||||
id: emu-deps-cache-step
|
id: "emu-deps-cache-step"
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
|
key: "${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}"
|
||||||
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
|
path: "${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}"
|
||||||
|
|
||||||
## extra helpers/tools, these are not built inside the deps build dir
|
# extra helpers/tools, these are not built inside the deps build dir
|
||||||
- name: Clone third-party build helpers (common/win)
|
- name: "Clone third-party build helpers (common/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/common/win'
|
ref: "third-party/common/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
||||||
|
|
||||||
- name: Clone third-party deps (build/win)
|
- name: "Clone third-party deps (build/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/build/win'
|
ref: "third-party/build/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
||||||
|
|
||||||
### generate project files
|
# generate project files
|
||||||
- name: Generate project files
|
- name: "Generate project files"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
"${{env.THIRD_PARTY_BASE_DIR}}\common\win\premake\premake5.exe" --file=premake5.lua --genproto --emubuild=${{ github.sha }} --dosstub --winrsrc --winsign --os=windows vs2022
|
"${{env.THIRD_PARTY_BASE_DIR}}\common\win\premake\premake5.exe" --file=premake5.lua --genproto --emubuild=${{ github.sha }} --dosstub --winrsrc --winsign --os=windows vs2022
|
||||||
|
|
||||||
### build target
|
# build target
|
||||||
- name: Build target
|
- name: "Build target"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}/build/project/vs2022/win
|
working-directory: "${{ github.workspace }}/build/project/vs2022/win"
|
||||||
run: |
|
run: |
|
||||||
msbuild /nologo /target:${{ matrix.prj }} /m:2 /v:n /p:Configuration=${{ matrix.cfg }},Platform=${{ matrix.arch }} gbe.sln
|
msbuild /nologo /target:${{ matrix.prj }} /m:2 /v:n /p:Configuration=${{ matrix.cfg }},Platform=${{ matrix.arch }} gbe.sln
|
||||||
|
|
||||||
### upload artifact/package to github Actions
|
# upload artifact/package to github Actions
|
||||||
- name: Upload target package
|
- name: "Upload target package"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "emu-win-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
|
name: "emu-win-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
|
||||||
path: "build/win"
|
path: "build/win"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
56
.github/workflows/emu-deps-linux.yml
vendored
56
.github/workflows/emu-deps-linux.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Emu third-party dependencies (Linux)
|
name: "Emu third-party dependencies (Linux)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,66 +7,66 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PREMAKE_ACTION: gmake2
|
PREMAKE_ACTION: "gmake2"
|
||||||
DEPS_CACHE_KEY: emu-deps-linux
|
DEPS_CACHE_KEY: "emu-deps-linux"
|
||||||
DEPS_CACHE_DIR: build/deps/linux
|
DEPS_CACHE_DIR: "build/deps/linux"
|
||||||
|
|
||||||
PACKAGE_BASE_DIR: "build/package/linux"
|
PACKAGE_BASE_DIR: "build/package/linux"
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deps-build:
|
deps-build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Lookup cache for deps
|
- name: "Lookup cache for deps"
|
||||||
id: emu-deps-cache-step
|
id: "emu-deps-cache-step"
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
|
key: "${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}"
|
||||||
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
|
path: "${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}"
|
||||||
|
|
||||||
# we need branch because it has build scripts
|
# we need branch because it has build scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Clone third-party deps (common/linux)
|
- name: "Clone third-party deps (common/linux)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/common/linux'
|
ref: "third-party/common/linux"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/linux"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/linux"
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/linux)
|
- name: "Clone third-party deps (deps/linux)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/linux'
|
ref: "third-party/deps/linux"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/linux"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/linux"
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/common)
|
- name: "Clone third-party deps (deps/common)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/common'
|
ref: "third-party/deps/common"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common"
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
## mandatory Linux packages
|
# mandatory Linux packages
|
||||||
- name: Install required packages
|
- name: "Install required packages"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
run: |
|
run: |
|
||||||
sudo apt update -y
|
sudo apt update -y
|
||||||
sudo apt install -y coreutils # echo, printf, etc...
|
sudo apt install -y coreutils # echo, printf, etc...
|
||||||
@ -78,10 +78,10 @@ jobs:
|
|||||||
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
|
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
|
||||||
# sudo apt install -y binutils # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff
|
# sudo apt install -y binutils # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff
|
||||||
|
|
||||||
- name: Build deps
|
- name: "Build deps"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
export CMAKE_GENERATOR="Unix Makefiles"
|
export CMAKE_GENERATOR="Unix Makefiles"
|
||||||
sudo chmod 777 ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5
|
sudo chmod 777 ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5
|
||||||
|
50
.github/workflows/emu-deps-win.yml
vendored
50
.github/workflows/emu-deps-win.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Emu third-party dependencies (Windows)
|
name: "Emu third-party dependencies (Windows)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,76 +7,76 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PREMAKE_ACTION: vs2022
|
PREMAKE_ACTION: "vs2022"
|
||||||
DEPS_CACHE_KEY: emu-deps-win
|
DEPS_CACHE_KEY: "emu-deps-win"
|
||||||
DEPS_CACHE_DIR: build/deps/win
|
DEPS_CACHE_DIR: "build/deps/win"
|
||||||
|
|
||||||
PACKAGE_BASE_DIR: "build/package/win"
|
PACKAGE_BASE_DIR: "build/package/win"
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deps-build:
|
deps-build:
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
- name: Lookup cache for deps
|
- name: "Lookup cache for deps"
|
||||||
id: emu-deps-cache-step
|
id: "emu-deps-cache-step"
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
|
key: "${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}"
|
||||||
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
|
path: "${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}"
|
||||||
lookup-only: true # don't restore cache if found
|
lookup-only: true # don't restore cache if found
|
||||||
|
|
||||||
# we need branch because it has build scripts
|
# we need branch because it has build scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Clone third-party deps (common/win)
|
- name: "Clone third-party deps (common/win)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/common/win'
|
ref: "third-party/common/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/win)
|
- name: "Clone third-party deps (deps/win)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/win'
|
ref: "third-party/deps/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/common)
|
- name: "Clone third-party deps (deps/common)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/common'
|
ref: "third-party/deps/common"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common"
|
||||||
|
|
||||||
- name: Clone third-party deps (common/win)
|
- name: "Clone third-party deps (common/win)"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/common/win'
|
ref: "third-party/common/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
||||||
|
|
||||||
- name: Build deps
|
- name: "Build deps"
|
||||||
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
if: steps.emu-deps-cache-step.outputs.cache-hit != 'true'
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
set "CMAKE_GENERATOR=Visual Studio 17 2022"
|
set "CMAKE_GENERATOR=Visual Studio 17 2022"
|
||||||
"${{env.THIRD_PARTY_BASE_DIR}}\common\win\premake\premake5.exe" --file=premake5-deps.lua --64-build --32-build --all-ext --all-build --j=2 --verbose --clean --os=windows vs2022
|
"${{env.THIRD_PARTY_BASE_DIR}}\common\win\premake\premake5.exe" --file=premake5-deps.lua --64-build --32-build --all-ext --all-build --j=2 --verbose --clean --os=windows vs2022
|
||||||
|
30
.github/workflows/emu-pull-request.yml
vendored
30
.github/workflows/emu-pull-request.yml
vendored
@ -1,30 +1,30 @@
|
|||||||
name: Emu PR
|
name: "Emu PR"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["dev"]
|
branches: ["dev"]
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**/*.md'
|
- "**/*.md"
|
||||||
- 'dev.notes/**'
|
- "dev.notes/**"
|
||||||
- 'post_build/**'
|
- "post_build/**"
|
||||||
- 'z_original_repo_files/**'
|
- "z_original_repo_files/**"
|
||||||
- 'sdk/*.txt'
|
- "sdk/*.txt"
|
||||||
- 'LICENSE'
|
- "LICENSE"
|
||||||
# tools
|
# tools
|
||||||
- 'tools/generate_emu_config/**'
|
- "tools/generate_emu_config/**"
|
||||||
- 'tools/migrate_gse/**'
|
- "tools/migrate_gse/**"
|
||||||
- 'tools/steamclient_loader/linux/**' # these are just scripts, not built
|
- "tools/steamclient_loader/linux/**" # these are just scripts, not built
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
emu-win-all:
|
emu-win-all:
|
||||||
name: win
|
name: "win"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/emu-build-all-win.yml
|
uses: "./.github/workflows/emu-build-all-win.yml"
|
||||||
|
|
||||||
emu-linux-all:
|
emu-linux-all:
|
||||||
name: linux
|
name: "linux"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/emu-build-all-linux.yml
|
uses: "./.github/workflows/emu-build-all-linux.yml"
|
||||||
|
28
.github/workflows/gen_emu_config-build-linux.yml
vendored
28
.github/workflows/gen_emu_config-build-linux.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Build gen_emu_config script (Linux)
|
name: "Build gen_emu_config script (Linux)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,7 +7,7 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: "generate_emu_config-linux-${{ github.sha }}"
|
ARTIFACT_NAME: "generate_emu_config-linux-${{ github.sha }}"
|
||||||
@ -16,37 +16,37 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
# env
|
# env
|
||||||
- name: Install env
|
- name: "Install env"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: sudo chmod 777 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh
|
run: sudo chmod 777 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
# build
|
# build
|
||||||
- name: Rebuild
|
- name: "Rebuild"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: sudo chmod 777 rebuild_linux.sh && ./rebuild_linux.sh
|
run: sudo chmod 777 rebuild_linux.sh && ./rebuild_linux.sh
|
||||||
|
|
||||||
# upload artifact
|
# upload artifact
|
||||||
- name: Upload build package
|
- name: "Upload build package"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "${{ env.ARTIFACT_NAME }}"
|
name: "${{ env.ARTIFACT_NAME }}"
|
||||||
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
34
.github/workflows/gen_emu_config-build-win.yml
vendored
34
.github/workflows/gen_emu_config-build-win.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Build gen_emu_config script (Windows)
|
name: "Build gen_emu_config script (Windows)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,62 +7,62 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: "generate_emu_config-win-${{ github.sha }}"
|
ARTIFACT_NAME: "generate_emu_config-win-${{ github.sha }}"
|
||||||
SCRIPT_BASE_DIR: "tools/generate_emu_config"
|
SCRIPT_BASE_DIR: "tools/generate_emu_config"
|
||||||
PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/win"
|
PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/win"
|
||||||
|
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python
|
- name: "Set up Python"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: "3.12"
|
||||||
|
|
||||||
### on Windows Git will auto change line ending to CRLF, not preferable
|
### on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
## extra helpers/tools, these are not built inside the deps build dir
|
## extra helpers/tools, these are not built inside the deps build dir
|
||||||
- name: Clone third-party deps (build/win)
|
- name: "Clone third-party deps (build/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/build/win'
|
ref: "third-party/build/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
||||||
|
|
||||||
# env
|
# env
|
||||||
- name: Install env
|
- name: "Install env"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: recreate_venv_win.bat
|
run: recreate_venv_win.bat
|
||||||
|
|
||||||
# build
|
# build
|
||||||
- name: Rebuild
|
- name: "Rebuild"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: rebuild_win.bat
|
run: rebuild_win.bat
|
||||||
|
|
||||||
# upload artifact
|
# upload artifact
|
||||||
- name: Upload build package
|
- name: "Upload build package"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "${{ env.ARTIFACT_NAME }}"
|
name: "${{ env.ARTIFACT_NAME }}"
|
||||||
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
name: Gen emu cfg PR
|
name: "Gen emu cfg PR"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["dev"]
|
branches: ["dev"]
|
||||||
paths:
|
paths:
|
||||||
- '!**/*.md'
|
- "!**/*.md"
|
||||||
- 'tools/generate_emu_config/**'
|
- "tools/generate_emu_config/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
script-win:
|
script-win:
|
||||||
name: Gen emu config win
|
name: "Gen emu config win"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/gen_emu_config-build-win.yml
|
uses: "./.github/workflows/gen_emu_config-build-win.yml"
|
||||||
|
|
||||||
script-linux:
|
script-linux:
|
||||||
name: Gen emu config linux
|
name: "Gen emu config linux"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/gen_emu_config-build-linux.yml
|
uses: "./.github/workflows/gen_emu_config-build-linux.yml"
|
||||||
|
28
.github/workflows/migrate_gse-build-linux.yml
vendored
28
.github/workflows/migrate_gse-build-linux.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Build migrate_gse script (Linux)
|
name: "Build migrate_gse script (Linux)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,7 +7,7 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: "migrate_gse-linux-${{ github.sha }}"
|
ARTIFACT_NAME: "migrate_gse-linux-${{ github.sha }}"
|
||||||
@ -16,37 +16,37 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
# env
|
# env
|
||||||
- name: Install env
|
- name: "Install env"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: sudo chmod 777 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh
|
run: sudo chmod 777 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh
|
||||||
|
|
||||||
# build
|
# build
|
||||||
- name: Rebuild
|
- name: "Rebuild"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: sudo chmod 777 rebuild_linux.sh && ./rebuild_linux.sh
|
run: sudo chmod 777 rebuild_linux.sh && ./rebuild_linux.sh
|
||||||
|
|
||||||
# upload artifact
|
# upload artifact
|
||||||
- name: Upload build package
|
- name: "Upload build package"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "${{ env.ARTIFACT_NAME }}"
|
name: "${{ env.ARTIFACT_NAME }}"
|
||||||
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
36
.github/workflows/migrate_gse-build-win.yml
vendored
36
.github/workflows/migrate_gse-build-win.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Build migrate_gse script (Windows)
|
name: "Build migrate_gse script (Windows)"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -7,62 +7,62 @@ on:
|
|||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
ARTIFACT_NAME: "migrate_gse-win-${{ github.sha }}"
|
ARTIFACT_NAME: "migrate_gse-win-${{ github.sha }}"
|
||||||
SCRIPT_BASE_DIR: "tools/migrate_gse"
|
SCRIPT_BASE_DIR: "tools/migrate_gse"
|
||||||
PACKAGE_BASE_DIR: "tools/migrate_gse/bin/win"
|
PACKAGE_BASE_DIR: "tools/migrate_gse/bin/win"
|
||||||
|
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python 3.10
|
- name: "Set up Python 3.12"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.12"
|
||||||
|
|
||||||
### on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
## extra helpers/tools, these are not built inside the deps build dir
|
# extra helpers/tools, these are not built inside the deps build dir
|
||||||
- name: Clone third-party deps (build/win)
|
- name: "Clone third-party deps (build/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/build/win'
|
ref: "third-party/build/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
|
||||||
|
|
||||||
# env
|
# env
|
||||||
- name: Install env
|
- name: "Install env"
|
||||||
shell: cmd
|
shell: cmd
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: recreate_venv_win.bat
|
run: recreate_venv_win.bat
|
||||||
|
|
||||||
# build
|
# build
|
||||||
- name: Rebuild
|
- name: "Rebuild"
|
||||||
shell: cmd
|
shell: cmd
|
||||||
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
|
||||||
run: rebuild_win.bat
|
run: rebuild_win.bat
|
||||||
|
|
||||||
# upload artifact
|
# upload artifact
|
||||||
- name: Upload build package
|
- name: "Upload build package"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "${{ env.ARTIFACT_NAME }}"
|
name: "${{ env.ARTIFACT_NAME }}"
|
||||||
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
path: "${{ env.PACKAGE_BASE_DIR }}/"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
12
.github/workflows/migrate_gse-pull-request.yml
vendored
12
.github/workflows/migrate_gse-pull-request.yml
vendored
@ -1,22 +1,22 @@
|
|||||||
name: Migrate GSE PR
|
name: "Migrate GSE PR"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["dev"]
|
branches: ["dev"]
|
||||||
paths:
|
paths:
|
||||||
- '!**/*.md'
|
- "!**/*.md"
|
||||||
- 'tools/migrate_gse/**'
|
- "tools/migrate_gse/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
script-win:
|
script-win:
|
||||||
name: Migrate GSE win
|
name: "Migrate GSE win"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/migrate_gse-build-win.yml
|
uses: ./.github/workflows/migrate_gse-build-win.yml
|
||||||
|
|
||||||
script-linux:
|
script-linux:
|
||||||
name: Migrate GSE linux
|
name: "Migrate GSE linux"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/migrate_gse-build-linux.yml
|
uses: ./.github/workflows/migrate_gse-build-linux.yml
|
||||||
|
345
.github/workflows/release.yml
vendored
345
.github/workflows/release.yml
vendored
@ -1,430 +1,411 @@
|
|||||||
name: Prepare release
|
name: "Prepare release"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- release-*
|
- "release-*"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: "write"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
THIRD_PARTY_BASE_DIR: 'third-party'
|
THIRD_PARTY_BASE_DIR: "third-party"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
emu-win-all:
|
emu-win-all:
|
||||||
name: Emu win all
|
name: "Emu win all"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/emu-build-all-win.yml
|
uses: "./.github/workflows/emu-build-all-win.yml"
|
||||||
|
|
||||||
emu-win-prep:
|
emu-win-prep:
|
||||||
needs: [ emu-win-all ]
|
needs: ["emu-win-all"]
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
steps:
|
steps:
|
||||||
# on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
# we need branch because it has package scripts
|
# we need branch because it has package scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/win)
|
- name: "Clone third-party deps (deps/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/win'
|
ref: "third-party/deps/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
||||||
|
|
||||||
## donwload artifacts
|
# download artifacts
|
||||||
- name: Download emu build artifacts (Win)
|
- name: "Download emu build artifacts (Win)"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: build/win
|
path: "build/win"
|
||||||
pattern: emu-win-*-${{ github.sha }}
|
pattern: "emu-win-*-${{ github.sha }}"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
### print files
|
# print files
|
||||||
- name: Print files
|
- name: "Print files"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
dir /s /b /a:-d build\win
|
dir /s /b /a:-d build\win
|
||||||
|
|
||||||
### remove linker files
|
# package (release mode)
|
||||||
### - name: Remove linker files
|
- name: "Package build (release)"
|
||||||
### shell: cmd
|
shell: "cmd"
|
||||||
### working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
### run: |
|
|
||||||
### del /f /s /q build\win\*.exp,build\win\*.lib
|
|
||||||
### exit /b 0
|
|
||||||
|
|
||||||
### package (release mode)
|
|
||||||
- name: Package build (release)
|
|
||||||
shell: cmd
|
|
||||||
working-directory: ${{ github.workspace }}
|
|
||||||
run: package_win.bat vs2022\release
|
run: package_win.bat vs2022\release
|
||||||
|
|
||||||
### package (debug mode)
|
# package (debug mode)
|
||||||
- name: Package build (debug)
|
- name: "Package build (debug)"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: package_win.bat vs2022\debug 1
|
run: package_win.bat vs2022\debug 1
|
||||||
|
|
||||||
### release (debug + release modes) if this is a tag push
|
# release (debug + release modes) if this is a tag push
|
||||||
- name: Release
|
- name: "Release"
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: "build/package/win/**/*"
|
files: "build/package/win/**/*"
|
||||||
|
|
||||||
### upload artifacts/packages if this is a manual run
|
# upload artifacts/packages if this is a manual run
|
||||||
- name: Upload release package
|
- name: "Upload release package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-emu-win-release-${{ github.sha }}"
|
name: "release-emu-win-release-${{ github.sha }}"
|
||||||
path: "build/package/win/vs2022/*release*"
|
path: "build/package/win/vs2022/*release*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
- name: Upload debug package
|
|
||||||
|
- name: "Upload debug package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-emu-win-debug-${{ github.sha }}"
|
name: "release-emu-win-debug-${{ github.sha }}"
|
||||||
path: "build/package/win/vs2022/*debug*"
|
path: "build/package/win/vs2022/*debug*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
emu-linux-all:
|
emu-linux-all:
|
||||||
name: Emu linux all
|
name: "Emu linux all"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/emu-build-all-linux.yml
|
uses: "./.github/workflows/emu-build-all-linux.yml"
|
||||||
|
|
||||||
emu-linux-prep:
|
emu-linux-prep:
|
||||||
needs: [ emu-linux-all ]
|
needs: ["emu-linux-all"]
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
steps:
|
steps:
|
||||||
# we need branch because it has package scripts
|
# we need branch because it has package scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/linux)
|
- name: "Clone third-party deps (deps/linux)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/linux'
|
ref: "third-party/deps/linux"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/linux"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/linux"
|
||||||
|
|
||||||
## donwload artifacts
|
# download artifacts
|
||||||
- name: Download emu build artifacts (linux)
|
- name: "Download emu build artifacts (linux)"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: build/linux
|
path: "build/linux"
|
||||||
pattern: emu-linux-*-${{ github.sha }}
|
pattern: "emu-linux-*-${{ github.sha }}"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}" && sudo chmod 777 package_linux.sh
|
run: sudo chmod -R 777 "${{ github.workspace }}" && sudo chmod 777 package_linux.sh
|
||||||
|
|
||||||
### print files
|
# print files
|
||||||
- name: Print files
|
- name: "Print files"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
ls -la build/linux/*/*
|
ls -la build/linux/*/*
|
||||||
|
|
||||||
### downlaod ubuntu packages
|
# downlaod ubuntu packages
|
||||||
- name: Download required Ubuntu packages
|
- name: "Download required Ubuntu packages"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
sudo apt update || exit 1
|
sudo apt update || exit 1
|
||||||
sudo apt install tar -y || exit 1
|
sudo apt install tar -y || exit 1
|
||||||
|
|
||||||
### package (release mode)
|
# package (release mode)
|
||||||
- name: Package build (release)
|
- name: "Package build (release)"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: ./package_linux.sh gmake2/release
|
run: ./package_linux.sh gmake2/release
|
||||||
|
|
||||||
### package (debug mode)
|
# package (debug mode)
|
||||||
- name: Package build (debug)
|
- name: "Package build (debug)"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: ./package_linux.sh gmake2/debug 1
|
run: ./package_linux.sh gmake2/debug 1
|
||||||
|
|
||||||
### release (debug + release modes) if this is a tag push
|
# release (debug + release modes) if this is a tag push
|
||||||
- name: Release
|
- name: "Release"
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: "build/package/linux/**/*"
|
files: "build/package/linux/**/*"
|
||||||
|
|
||||||
### upload artifacts/packages if this is a manual run
|
# upload artifacts/packages if this is a manual run
|
||||||
- name: Upload release package
|
- name: "Upload release package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-emu-linux-release-${{ github.sha }}"
|
name: "release-emu-linux-release-${{ github.sha }}"
|
||||||
path: "build/package/linux/gmake2/*release*"
|
path: "build/package/linux/gmake2/*release*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
- name: Upload debug package
|
|
||||||
|
- name: "Upload debug package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-emu-linux-debug-${{ github.sha }}"
|
name: "release-emu-linux-debug-${{ github.sha }}"
|
||||||
path: "build/package/linux/gmake2/*debug*"
|
path: "build/package/linux/gmake2/*debug*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
gen_emu_script-win:
|
gen_emu_script-win:
|
||||||
name: Gen emu config win
|
name: "Gen emu config win"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/gen_emu_config-build-win.yml
|
uses: "./.github/workflows/gen_emu_config-build-win.yml"
|
||||||
|
|
||||||
gen_emu_script-win-prep:
|
gen_emu_script-win-prep:
|
||||||
needs: [ gen_emu_script-win ]
|
needs: ["gen_emu_script-win"]
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
steps:
|
steps:
|
||||||
# on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
# we need branch because it has package scripts
|
# we need branch because it has package scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/win)
|
- name: "Clone third-party deps (deps/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/win'
|
ref: "third-party/deps/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
||||||
|
|
||||||
## donwload artifacts
|
# download artifacts
|
||||||
- name: Download script build artifacts (Win)
|
- name: "Download script build artifacts (Win)"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: tools/generate_emu_config/bin/win
|
path: "tools/generate_emu_config/bin/win"
|
||||||
pattern: generate_emu_config-win-*
|
pattern: "generate_emu_config-win-*"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
### package
|
# package
|
||||||
- name: Package script
|
- name: "Package script"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: "tools/generate_emu_config"
|
working-directory: "tools/generate_emu_config"
|
||||||
run: package_win.bat
|
run: package_win.bat
|
||||||
|
|
||||||
# release tag
|
# release tag
|
||||||
- name: Release
|
- name: "Release"
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: "tools/generate_emu_config/bin/package/win/**/*"
|
files: "tools/generate_emu_config/bin/package/win/**/*"
|
||||||
|
|
||||||
### upload artifact/package if this is a manual run
|
# upload artifact/package if this is a manual run
|
||||||
- name: Upload release package
|
- name: "Upload release package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-generate_emu_config-win-${{ github.sha }}"
|
name: "release-generate_emu_config-win-${{ github.sha }}"
|
||||||
path: "tools/generate_emu_config/bin/package/win/**/*"
|
path: "tools/generate_emu_config/bin/package/win/**/*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
gen_emu_script-linux:
|
gen_emu_script-linux:
|
||||||
name: Gen emu config linux
|
name: "Gen emu config linux"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/gen_emu_config-build-linux.yml
|
uses: "./.github/workflows/gen_emu_config-build-linux.yml"
|
||||||
|
|
||||||
gen_emu_script-linux-prep:
|
gen_emu_script-linux-prep:
|
||||||
needs: [ gen_emu_script-linux ]
|
needs: ["gen_emu_script-linux"]
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
steps:
|
steps:
|
||||||
# we need branch because it has package scripts
|
# we need branch because it has package scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
## donwload artifacts
|
# download artifacts
|
||||||
- name: Download script build artifacts (linux)
|
- name: "Download script build artifacts (linux)"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: tools/generate_emu_config/bin/linux
|
path: "tools/generate_emu_config/bin/linux"
|
||||||
pattern: generate_emu_config-linux-*
|
pattern: "generate_emu_config-linux-*"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
### package
|
# package
|
||||||
- name: Package script
|
- name: "Package script"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "tools/generate_emu_config"
|
working-directory: "tools/generate_emu_config"
|
||||||
run: sudo chmod 777 package_linux.sh && sudo ./package_linux.sh
|
run: sudo chmod 777 package_linux.sh && sudo ./package_linux.sh
|
||||||
|
|
||||||
# release tag
|
# release tag
|
||||||
- name: Release
|
- name: "Release"
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: "tools/generate_emu_config/bin/package/linux/**/*"
|
files: "tools/generate_emu_config/bin/package/linux/**/*"
|
||||||
|
|
||||||
### upload artifact/package if this is a manual run
|
# upload artifact/package if this is a manual run
|
||||||
- name: Upload release package
|
- name: "Upload release package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-generate_emu_config-linux-${{ github.sha }}"
|
name: "release-generate_emu_config-linux-${{ github.sha }}"
|
||||||
path: "tools/generate_emu_config/bin/package/linux/**/*"
|
path: "tools/generate_emu_config/bin/package/linux/**/*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
migrate_gse_script-win:
|
migrate_gse_script-win:
|
||||||
name: Migrate GSE win
|
name: "Migrate GSE win"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/migrate_gse-build-win.yml
|
uses: "./.github/workflows/migrate_gse-build-win.yml"
|
||||||
|
|
||||||
migrate_gse_script-win-prep:
|
migrate_gse_script-win-prep:
|
||||||
needs: [ migrate_gse_script-win ]
|
needs: ["migrate_gse_script-win"]
|
||||||
runs-on: windows-2022
|
runs-on: "windows-2022"
|
||||||
steps:
|
steps:
|
||||||
# on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: Ensure LF line ending
|
- name: "Ensure LF line ending"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
|
|
||||||
# we need branch because it has package scripts
|
# we need branch because it has package scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Clone third-party deps (deps/win)
|
- name: "Clone third-party deps (deps/win)"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: 'third-party/deps/win'
|
ref: "third-party/deps/win"
|
||||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/win"
|
||||||
|
|
||||||
## donwload artifacts
|
# download artifacts
|
||||||
- name: Download script build artifacts (Win)
|
- name: "Download script build artifacts (Win)"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: tools/migrate_gse/bin/win
|
path: "tools/migrate_gse/bin/win"
|
||||||
pattern: migrate_gse-win-*
|
pattern: "migrate_gse-win-*"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
### package
|
# package
|
||||||
- name: Package script
|
- name: "Package script"
|
||||||
shell: cmd
|
shell: "cmd"
|
||||||
working-directory: "tools/migrate_gse"
|
working-directory: "tools/migrate_gse"
|
||||||
run: package_win.bat
|
run: package_win.bat
|
||||||
|
|
||||||
# release tag
|
# release tag
|
||||||
- name: Release
|
- name: "Release"
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: "tools/migrate_gse/bin/package/win/**/*"
|
files: "tools/migrate_gse/bin/package/win/**/*"
|
||||||
|
|
||||||
### upload artifact/package if this is a manual run
|
# upload artifact/package if this is a manual run
|
||||||
- name: Upload release package
|
- name: "Upload release package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-migrate_gse-win-${{ github.sha }}"
|
name: "release-migrate_gse-win-${{ github.sha }}"
|
||||||
path: "tools/migrate_gse/bin/package/win/**/*"
|
path: "tools/migrate_gse/bin/package/win/**/*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
migrate_gse_script-linux:
|
migrate_gse_script-linux:
|
||||||
name: Migrate GSE linux
|
name: Migrate GSE linux
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/migrate_gse-build-linux.yml
|
uses: "./.github/workflows/migrate_gse-build-linux.yml"
|
||||||
|
|
||||||
migrate_gse_script-linux-prep:
|
migrate_gse_script-linux-prep:
|
||||||
needs: [ migrate_gse_script-linux ]
|
needs: ["migrate_gse_script-linux"]
|
||||||
runs-on: ubuntu-24.04
|
runs-on: "ubuntu-24.04"
|
||||||
steps:
|
steps:
|
||||||
# we need branch because it has package scripts
|
# we need branch because it has package scripts
|
||||||
- name: Checkout branch
|
- name: "Checkout branch"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
## donwload artifacts
|
# download artifacts
|
||||||
- name: Download script build artifacts (linux)
|
- name: "Download script build artifacts (linux)"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: tools/migrate_gse/bin/linux
|
path: "tools/migrate_gse/bin/linux"
|
||||||
pattern: migrate_gse-linux-*
|
pattern: "migrate_gse-linux-*"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
### fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: Give all permissions to repo folder
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}"
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
||||||
|
|
||||||
### package
|
# package
|
||||||
- name: Package script
|
- name: "Package script"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "tools/migrate_gse"
|
working-directory: "tools/migrate_gse"
|
||||||
run: sudo chmod 777 package_linux.sh && sudo ./package_linux.sh
|
run: sudo chmod 777 package_linux.sh && sudo ./package_linux.sh
|
||||||
|
|
||||||
# release tag
|
# release tag
|
||||||
- name: Release
|
- name: "Release"
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: "tools/migrate_gse/bin/package/linux/**/*"
|
files: "tools/migrate_gse/bin/package/linux/**/*"
|
||||||
|
|
||||||
### upload artifact/package if this is a manual run
|
# upload artifact/package if this is a manual run
|
||||||
- name: Upload release package
|
- name: "Upload release package"
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: "release-migrate_gse-linux-${{ github.sha }}"
|
name: "release-migrate_gse-linux-${{ github.sha }}"
|
||||||
path: "tools/migrate_gse/bin/package/linux/**/*"
|
path: "tools/migrate_gse/bin/package/linux/**/*"
|
||||||
if-no-files-found: 'error'
|
if-no-files-found: "error"
|
||||||
compression-level: 9
|
compression-level: 9
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user