umu_run: respect STEAM_COMPAT_CLIENT_INSTALL_PATH from client #2017
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: make | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install meson shellcheck scdoc python3-hatchling python3-build python3-installer python3-filelock python3-hatch-vcs python3-wheel libzstd-dev | |
| - name: Initialize submodules | |
| run: | | |
| git submodule update --init --recursive | |
| - name: Lint using Shellcheck | |
| run: | | |
| shellcheck configure.sh | |
| - name: Make system package | |
| run: | | |
| ./configure.sh --prefix=/usr | |
| make DESTDIR=dist install | |
| - name: Make release | |
| run: | | |
| # TODO: Figure out release without requiring root | |
| sudo env PATH=$PATH make release | |
| - name: Make user install | |
| run: | | |
| ./configure.sh --user-install | |
| # TODO: Figure out user install without requiring root | |
| sudo env PATH=$PATH make install |