forked from ddnet/ddnet
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
122 additions
and
1 deletion.
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,93 @@ | ||
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= | ||
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 -DCMAKE_OSX_ARCHITECTURES="x86_64" -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DCMAKE_FIND_FRAMEWORK=NEVER | ||
cmake-init-env: CXXFLAGS= | ||
package-file: "*-macos.dmg" | ||
fancy: false | ||
- os: windows-latest | ||
cmake-args: -A x64 -DDISCORD=ON | ||
cmake-init-env: CXXFLAGS= LDFLAGS= | ||
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 macOS | ||
if: contains(matrix.os, 'macOS') | ||
run: | | ||
brew update || true | ||
brew install pkg-config ninja molten-vk vulkan-headers glslang spirv-tools glew googletest molten-vk opusfile wavpack x264 || true | ||
brew upgrade freetype | ||
pip3 install --break-system-packages dmgbuild | ||
echo /Library/Frameworks/Python.framework/Versions/3.12/bin >> $GITHUB_PATH | ||
- name: Add rust macOS | ||
if: contains(matrix.os, 'macOS') | ||
run: | | ||
rustup default stable | ||
rustup update | ||
rustup target add x86_64-apple-darwin aarch64-apple-darwin | ||
- name: Cache Rust dependencies | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Build in release mode | ||
env: | ||
VERSION: ${{ secrets.VERSION }} | ||
shell: bash | ||
run: | | ||
VERSION_FILE="$GITHUB_WORKSPACE/versioninfo.h" | ||
printf '%s' "$VERSION" | base64 -d > "$VERSION_FILE" | ||
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then | ||
export MSYS_ARG_CONV_EXCL="/FI" | ||
POST_FLAGS="-DCMAKE_CXX_FLAGS=\"/FI$VERSION_FILE\"" | ||
ENVFLAGS="" | ||
else | ||
ENVFLAGS="CXXFLAGS=-include$VERSION_FILE" | ||
POST_FLAGS="" | ||
fi | ||
mkdir release | ||
cd release | ||
${{ matrix.cmake-path }}cmake -E env ${{ matrix.cmake-init-env }} $ENVFLAGS ${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} $POST_FLAGS -DCMAKE_BUILD_TYPE=Release -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 |
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 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