Skip to content

Commit

Permalink
Create fast-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrc6 committed Jan 22, 2025
1 parent 0d606b5 commit 698b9fc
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
107 changes: 107 additions & 0 deletions .github/workflows/fast-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
name: Fast-Build

on:
push:
branches-ignore:
- gh-readonly-queue/**

jobs:
build-cmake:
runs-on: ${{ matrix.os }}
env:
CARGO_HTTP_MULTIPLEXING: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
include:
- os: ubuntu-latest
cmake-args: -G Ninja -DCMAKE_BUILD_TYPE=Release -DDISCORD=ON -DDISCORD_DYNAMIC=ON -DWEBSOCKETS=OFF -DPREFER_BUNDLED_LIBS=ON
cmake-init-env: CXXFLAGS=-Werror
package-file: "*-linux_x86_64.tar.xz"
fancy: true
- os: macOS-latest
cmake-args: -G Ninja -DCMAKE_BUILD_TYPE=Release -DDISCORD=ON -DWEBSOCKETS=OFF -DPREFER_BUNDLED_LIBS=ON
cmake-init-env: CXXFLAGS=-Werror
package-file: "*-macos.dmg"
fancy: false
- os: windows-latest
cmake-args: -A x64 -DDISCORD=ON
cmake-init-env: CXXFLAGS=/WX LDFLAGS=/WX
package-file: "*-win64.zip"
fancy: false
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Prepare Linux
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get update -y
# mount: /var/lib/grub/esp: special device /dev/disk/by-id/scsi-... does not exist.
# sudo apt-get upgrade -y
sudo apt-get install pkg-config cmake ninja-build libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev libvulkan-dev glslang-tools spirv-tools libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev libx264-dev libpng-dev valgrind gcovr libglew-dev -y
- name: Prepare Linux (fancy)
if: contains(matrix.os, 'ubuntu') && matrix.fancy
run: |
sudo apt-get install libmariadb-dev libwebsockets-dev mariadb-server -y
sudo systemctl stop mysql
sudo rm -rf /var/lib/mysql/
sudo mysql_install_db --user=mysql --datadir=/var/lib/mysql/
cd /usr; sudo mysqld_safe --datadir='/var/lib/mysql/' --no-watch
sleep 10
sudo mysql <<EOF
CREATE DATABASE ddnet;
CREATE USER 'ddnet'@'localhost' IDENTIFIED BY 'thebestpassword';
GRANT ALL PRIVILEGES ON ddnet.* TO 'ddnet'@'localhost';
FLUSH PRIVILEGES;
EOF
- name: Prepare macOS
if: contains(matrix.os, 'macOS')
run: |
brew update || true
brew install pkg-config sdl2 ffmpeg ninja molten-vk vulkan-headers glslang spirv-tools rust || true
brew upgrade freetype
pip3 install --break-system-packages dmgbuild
echo /Library/Frameworks/Python.framework/Versions/3.12/bin >> $GITHUB_PATH
sudo rm -rf /Library/Developer/CommandLineTools
- name: Set Version
shell: bash
run: |
printf '%s' "${{ secrets.VERSION }}" > versioninfo.h
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Build in release mode
env:
FLAGS_UNIX: ${{ secrets.FLAGS_UNIX }}
FLAGS_MSVC: ${{ secrets.FLAGS_MSVC }}
shell: bash
run: |
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
FLAGS="$FLAGS_MSVC"
else
FLAGS="$FLAGS_UNIX"
fi
mkdir release
cd release
${{ matrix.cmake-path }}cmake -E env ${{ matrix.cmake-init-env }} CXXFLAGS="-include $GITHUB_WORKSPACE/versioninfo.h" ${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} -DCMAKE_BUILD_TYPE=Release -Werror=dev -DDOWNLOAD_GTEST=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=. ..
${{ matrix.cmake-path }}cmake --build . --config Release --target everything ${{ matrix.build-args }}
- name: Package
run: |
cd release
${{ matrix.cmake-path }}cmake --build . --config Release --target package_default ${{ matrix.build-args }}
mkdir artifacts
mv ${{ matrix.package-file }} artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: ddnet-${{ matrix.os }}
path: release/artifacts
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,7 @@ set(EXPECTED_DATA
skins7/xmas_hat.png
strong_weak.png
tclient/fonts/Cabin-Regular.ttf
tclient/fonts/FreeSansBold.ttf
tclient/fonts/GoogleSans-Regular.ttf
tclient/fonts/Inter_24pt-Regular.ttf
tclient/fonts/Inter_24pt-SemiBold.ttf
Expand Down
3 changes: 3 additions & 0 deletions src/game/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@
extern const char *GIT_SHORTREV_HASH;
#define GAME_NAME "DDNet"
#define CLIENT_NAME "TClient"
#ifndef TCLIENT_VERSION
#define TCLIENT_VERSION "10.0.4"
#endif

#endif

0 comments on commit 698b9fc

Please sign in to comment.