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:
Sak32009 2024-08-25 12:49:34 +02:00
parent 971e60c85d
commit 1b68c4bb0e
12 changed files with 590 additions and 603 deletions

View File

@ -1,4 +1,4 @@
name: Build emu (Linux) name: "Build emu (Linux)"
on: on:
workflow_call: workflow_call:
@ -7,88 +7,90 @@ 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
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
prj: [ prj: [
# regular api # regular api
'api_regular', 'steamclient_regular', "api_regular",
# api + client (experimental) "steamclient_regular",
'api_experimental', 'steamclient_experimental', # api + client (experimental)
# tools "api_experimental",
'tool_lobby_connect', 'tool_generate_interfaces', "steamclient_experimental",
] # tools
arch: [ 'x64', 'x32', ] "tool_lobby_connect",
cfg: [ 'debug', 'release', ] "tool_generate_interfaces",
]
arch: ["x64", "x32"]
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

View File

@ -1,4 +1,4 @@
name: Build emu (Windows) name: "Build emu (Windows)"
on: on:
workflow_call: workflow_call:
@ -7,104 +7,108 @@ 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
strategy: strategy:
fail-fast: false fail-fast: false
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",
# client (experimental) + loader + extra dll + gameoverlaylib "steamclient_experimental_stub",
'steamclient_experimental', 'steamclient_experimental_loader', # client (experimental) + loader + extra dll + gameoverlaylib
'steamclient_experimental_extra', 'lib_game_overlay_renderer', "steamclient_experimental",
# tools "steamclient_experimental_loader",
'tool_lobby_connect', 'tool_generate_interfaces', "steamclient_experimental_extra",
] "lib_game_overlay_renderer",
arch: [ 'x64', 'Win32', ] # tools
cfg: [ 'debug', 'release', ] "tool_lobby_connect",
"tool_generate_interfaces",
]
arch: ["x64", "Win32"]
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

View File

@ -1,4 +1,4 @@
name: Emu third-party dependencies (Linux) name: "Emu third-party dependencies (Linux)"
on: on:
workflow_call: workflow_call:
@ -7,82 +7,82 @@ 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...
sudo apt install -y build-essential sudo apt install -y build-essential
sudo apt install -y gcc-multilib # needed for 32-bit builds sudo apt install -y gcc-multilib # needed for 32-bit builds
sudo apt install -y g++-multilib sudo apt install -y g++-multilib
# sudo apt install -y clang # sudo apt install -y clang
sudo apt install -y libglx-dev # needed for overlay build (header files such as GL/glx.h) sudo apt install -y libglx-dev # needed for overlay build (header files such as GL/glx.h)
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
./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5-deps.lua --64-build --32-build --all-ext --all-build --j=2 --verbose --clean --os=linux gmake2 ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5-deps.lua --64-build --32-build --all-ext --all-build --j=2 --verbose --clean --os=linux gmake2

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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
uses: actions/checkout@v4
## extra helpers/tools, these are not built inside the deps build dir
- name: Clone third-party deps (build/win)
uses: actions/checkout@v4
with:
ref: 'third-party/build/win'
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
# env - name: "Checkout branch"
- name: Install env uses: actions/checkout@v4
shell: cmd
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
run: recreate_venv_win.bat
# build ## extra helpers/tools, these are not built inside the deps build dir
- name: Rebuild - name: "Clone third-party deps (build/win)"
shell: cmd uses: actions/checkout@v4
working-directory: "${{ env.SCRIPT_BASE_DIR }}" with:
run: rebuild_win.bat ref: "third-party/build/win"
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
# upload artifact # env
- name: Upload build package - name: "Install env"
uses: actions/upload-artifact@v4 shell: "cmd"
with: working-directory: "${{ env.SCRIPT_BASE_DIR }}"
name: "${{ env.ARTIFACT_NAME }}" run: recreate_venv_win.bat
path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: 'error' # build
compression-level: 9 - name: "Rebuild"
retention-days: 1 shell: "cmd"
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
run: rebuild_win.bat
# upload artifact
- name: "Upload build package"
uses: actions/upload-artifact@v4
with:
name: "${{ env.ARTIFACT_NAME }}"
path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: "error"
compression-level: 9
retention-days: 1

View File

@ -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"

View File

@ -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
# nested subdirs "build/linux/release" cause permission problems
- name: Give all permissions to repo folder
shell: bash
working-directory: ${{ github.workspace }}
run: sudo chmod -R 777 "${{ github.workspace }}"
# env # fix folder permissions! not sure why this fails
- name: Install env # nested subdirs "build/linux/release" cause permission problems
shell: bash - name: "Give all permissions to repo folder"
working-directory: "${{ env.SCRIPT_BASE_DIR }}" shell: "bash"
run: sudo chmod 777 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh working-directory: "${{ github.workspace }}"
run: sudo chmod -R 777 "${{ github.workspace }}"
# build # env
- name: Rebuild - name: "Install env"
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 recreate_venv_linux.sh && sudo ./recreate_venv_linux.sh
# upload artifact # build
- name: Upload build package - name: "Rebuild"
uses: actions/upload-artifact@v4 shell: "bash"
with: working-directory: "${{ env.SCRIPT_BASE_DIR }}"
name: "${{ env.ARTIFACT_NAME }}" run: sudo chmod 777 rebuild_linux.sh && ./rebuild_linux.sh
path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: 'error' # upload artifact
compression-level: 9 - name: "Upload build package"
retention-days: 1 uses: actions/upload-artifact@v4
with:
name: "${{ env.ARTIFACT_NAME }}"
path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: "error"
compression-level: 9
retention-days: 1

View File

@ -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
uses: actions/checkout@v4
## extra helpers/tools, these are not built inside the deps build dir
- name: Clone third-party deps (build/win)
uses: actions/checkout@v4
with:
ref: 'third-party/build/win'
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
# env - name: "Checkout branch"
- name: Install env uses: actions/checkout@v4
shell: cmd
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
run: recreate_venv_win.bat
# build # extra helpers/tools, these are not built inside the deps build dir
- name: Rebuild - name: "Clone third-party deps (build/win)"
shell: cmd uses: actions/checkout@v4
working-directory: "${{ env.SCRIPT_BASE_DIR }}" with:
run: rebuild_win.bat ref: "third-party/build/win"
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/win"
# upload artifact # env
- name: Upload build package - name: "Install env"
uses: actions/upload-artifact@v4 shell: cmd
with: working-directory: "${{ env.SCRIPT_BASE_DIR }}"
name: "${{ env.ARTIFACT_NAME }}" run: recreate_venv_win.bat
path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: 'error' # build
compression-level: 9 - name: "Rebuild"
retention-days: 1 shell: cmd
working-directory: "${{ env.SCRIPT_BASE_DIR }}"
run: rebuild_win.bat
# upload artifact
- name: "Upload build package"
uses: actions/upload-artifact@v4
with:
name: "${{ env.ARTIFACT_NAME }}"
path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: "error"
compression-level: 9
retention-days: 1

View File

@ -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

View File

@ -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