forked from FirestormViewer/phoenix-firestorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master-do-not-pull-request' into pre-merge
- Loading branch information
Showing
6 changed files
with
103 additions
and
194 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Linux build example | ||
on: | ||
workflow_dispatch: | ||
push: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
AUTOBUILD_ADDRSIZE: 64 | ||
AUTOBUILD_VARIABLES_FILE: ${{ github.workspace }}/.fs-build-variables/variables | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Checkout build variables | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: FirestormViewer/fs-build-variables | ||
path: .fs-build-variables | ||
|
||
- name: Install autobuild and python dependencies | ||
run: pip3 install autobuild llsd llbase | ||
|
||
- name: Install Linux dependencies | ||
if: runner.os == 'linux' | ||
run: | | ||
sudo apt update | ||
sudo apt install -y libgl1-mesa-dev libglu1-mesa-dev libpulse-dev \ | ||
build-essential git libssl-dev libxinerama-dev libxrandr-dev \ | ||
libfontconfig-dev libfreetype6-dev ninja-build | ||
sudo apt autoremove | ||
sudo apt clean | ||
df -h | ||
- name: Build | ||
id: build | ||
shell: bash | ||
run: | | ||
autobuild configure -A 64 -c ReleaseFS_open -- --no-opensim --avx2 --ninja --vscode | ||
cd build-linux-x86_64 && ninja -k0 |
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.