2024-08-25 18:49:34 +08:00
|
|
|
name: "Build emu (Linux)"
|
2024-05-11 18:13:59 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
# needed since it allows this to become a reusable workflow
|
|
|
|
workflow_dispatch:
|
|
|
|
# allows manual trigger
|
|
|
|
|
|
|
|
permissions:
|
2024-08-25 18:49:34 +08:00
|
|
|
contents: "write"
|
2024-05-11 18:13:59 +08:00
|
|
|
|
2024-05-20 08:12:20 +08:00
|
|
|
env:
|
2024-08-25 18:49:34 +08:00
|
|
|
PREMAKE_ACTION: "gmake2"
|
|
|
|
DEPS_CACHE_KEY: "emu-deps-linux"
|
|
|
|
DEPS_CACHE_DIR: "build/deps/linux"
|
2024-05-20 08:12:20 +08:00
|
|
|
|
|
|
|
PACKAGE_BASE_DIR: "build/package/linux"
|
2024-08-25 18:49:34 +08:00
|
|
|
THIRD_PARTY_BASE_DIR: "third-party"
|
|
|
|
|
2024-05-11 18:13:59 +08:00
|
|
|
jobs:
|
|
|
|
deps:
|
2024-08-25 18:49:34 +08:00
|
|
|
name: "Restore or build deps"
|
2024-05-11 18:13:59 +08:00
|
|
|
if: ${{ !cancelled() }}
|
2024-08-25 18:49:34 +08:00
|
|
|
uses: "./.github/workflows/emu-deps-linux.yml"
|
2024-05-11 18:13:59 +08:00
|
|
|
|
2024-05-20 08:12:20 +08:00
|
|
|
builds-matrix-linux:
|
2024-08-25 18:49:34 +08:00
|
|
|
name: "build"
|
|
|
|
needs: ["deps"]
|
2024-09-06 01:40:37 +08:00
|
|
|
runs-on: "ubuntu-20.04"
|
2024-05-11 18:13:59 +08:00
|
|
|
if: ${{ !cancelled() }}
|
2024-05-20 09:05:53 +08:00
|
|
|
continue-on-error: true
|
2024-08-25 18:49:34 +08:00
|
|
|
|
2024-05-20 08:12:20 +08:00
|
|
|
strategy:
|
2024-05-20 09:05:53 +08:00
|
|
|
fail-fast: false
|
2024-05-20 08:12:20 +08:00
|
|
|
matrix:
|
2024-05-22 10:38:40 +08:00
|
|
|
prj: [
|
2024-08-25 18:49:34 +08:00
|
|
|
# regular api
|
|
|
|
"api_regular",
|
|
|
|
"steamclient_regular",
|
|
|
|
# api + client (experimental)
|
|
|
|
"api_experimental",
|
|
|
|
"steamclient_experimental",
|
|
|
|
# tools
|
|
|
|
"tool_lobby_connect",
|
|
|
|
"tool_generate_interfaces",
|
|
|
|
]
|
|
|
|
arch: ["x64", "x32"]
|
|
|
|
cfg: ["debug", "release"]
|
|
|
|
|
2024-05-20 08:12:20 +08:00
|
|
|
steps:
|
2024-08-25 18:49:34 +08:00
|
|
|
# clone branch
|
|
|
|
- name: "Checkout branch"
|
2024-05-20 08:15:21 +08:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# deps
|
|
|
|
- name: "Restore deps"
|
|
|
|
id: "emu-deps-cache-step"
|
2024-05-20 08:12:20 +08:00
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
2024-08-26 00:08:23 +08:00
|
|
|
key: "${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}"
|
|
|
|
path: "${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}"
|
2024-05-20 08:12:20 +08:00
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# extra helpers/tools, these are not built inside the deps build dir
|
|
|
|
- name: "Clone third-party build helpers (common/linux)"
|
2024-05-20 08:12:20 +08:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
2024-08-25 18:49:34 +08:00
|
|
|
ref: "third-party/common/linux"
|
2024-05-20 08:12:20 +08:00
|
|
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/linux"
|
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
- name: "Clone third-party build helpers (build/linux)"
|
2024-05-20 08:12:20 +08:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
2024-08-25 18:49:34 +08:00
|
|
|
ref: "third-party/build/linux"
|
2024-05-20 08:12:20 +08:00
|
|
|
path: "${{env.THIRD_PARTY_BASE_DIR}}/build/linux"
|
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# 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 }}"
|
2024-05-31 17:24:38 +08:00
|
|
|
run: sudo chmod -R 777 "${{ github.workspace }}"
|
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# generate project files
|
|
|
|
- name: "Generate project files"
|
|
|
|
shell: "bash"
|
|
|
|
working-directory: "${{ github.workspace }}"
|
2024-05-31 19:39:06 +08:00
|
|
|
run: |
|
|
|
|
sudo chmod 777 ./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5
|
2024-05-31 20:09:36 +08:00
|
|
|
./${{env.THIRD_PARTY_BASE_DIR}}/common/linux/premake/premake5 --file=premake5.lua --genproto --emubuild=${{ github.sha }} --os=linux gmake2
|
2024-05-31 19:39:06 +08:00
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# mandatory Linux packages
|
|
|
|
- name: "Install required packages"
|
|
|
|
shell: "bash"
|
2024-05-31 17:24:38 +08:00
|
|
|
run: |
|
2024-05-31 17:29:52 +08:00
|
|
|
sudo apt update -y
|
2024-05-31 17:24:38 +08:00
|
|
|
sudo apt install -y coreutils # echo, printf, etc...
|
|
|
|
sudo apt install -y build-essential
|
|
|
|
sudo apt install -y gcc-multilib # needed for 32-bit builds
|
|
|
|
sudo apt install -y g++-multilib
|
|
|
|
# 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 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
|
2024-05-20 08:12:20 +08:00
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# build target
|
|
|
|
- name: "Build target"
|
|
|
|
shell: "bash"
|
|
|
|
working-directory: "${{ github.workspace }}/build/project/gmake2/linux"
|
2024-05-20 08:12:20 +08:00
|
|
|
run: |
|
2024-05-20 08:27:51 +08:00
|
|
|
echo "dry run..."
|
2024-05-31 17:24:38 +08:00
|
|
|
make -n -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
|
2024-05-20 08:27:51 +08:00
|
|
|
echo "actual run..."
|
2024-05-31 17:24:38 +08:00
|
|
|
make -j 2 config=${{ matrix.cfg }}_${{ matrix.arch }} ${{ matrix.prj }}
|
2024-05-20 08:12:20 +08:00
|
|
|
|
2024-08-25 18:49:34 +08:00
|
|
|
# upload artifact/package to github Actions
|
|
|
|
- name: "Upload target package"
|
2024-05-20 08:12:20 +08:00
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: "emu-linux-${{ matrix.prj }}-${{ matrix.cfg }}-${{ matrix.arch }}-${{ github.sha }}"
|
2024-06-03 01:43:17 +08:00
|
|
|
path: "build/linux"
|
2024-08-25 18:49:34 +08:00
|
|
|
if-no-files-found: "error"
|
2024-05-20 08:12:20 +08:00
|
|
|
compression-level: 9
|
|
|
|
retention-days: 1
|