From f42301091a72c39acec6e731153bec5de1d5bc21 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 16 Mar 2022 16:41:40 -0400 Subject: [PATCH] Set up a basic CI pipeline --- .github/workflows/build.yml | 50 +++++++++++++++++++ .../scripts/post_process_release_linux.sh | 11 ++++ .../scripts/post_process_release_windows.sh | 11 ++++ game/dist/README.md | 3 ++ game/dist/assets/.gitkeep | 0 rust-toolchain.toml | 8 +++ 6 files changed, 83 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 automation/scripts/post_process_release_linux.sh create mode 100644 automation/scripts/post_process_release_windows.sh create mode 100644 game/dist/README.md create mode 100644 game/dist/assets/.gitkeep create mode 100644 rust-toolchain.toml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..6d22a887 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,50 @@ +name: Build Full Release + +on: + push: + pull_request: + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v2 + - name: Checkout submodules + shell: bash + run: | + auth_header="$(git config --local --get http.https://github.com/.extraheader)" + git submodule sync --recursive + git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 + + # When building on Ubuntu, we need some dev libs to compile Raylib correctly + - name: Install additional Linux libraries + if: runner.os == 'Linux' + run: sudo apt-get update && sudo apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y + + # Build the game + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --all-features + + # If we are on Linux, do the linux post-process steps + - name: Linux packaging + if: runner.os == 'Linux' + shell: bash + run: bash ./automation/scripts/post_process_release_linux.sh + + # If we are on Windows, do the win64 post-process steps + - name: Windows packaging + if: runner.os == 'Windows' + shell: bash + run: bash ./automation/scripts/post_process_release_windows.sh + + # Upload any generated artifacts + - uses: actions/upload-artifact@v3 + with: + name: game-binary + path: target/production_tmp/ldjam50-* \ No newline at end of file diff --git a/automation/scripts/post_process_release_linux.sh b/automation/scripts/post_process_release_linux.sh new file mode 100644 index 00000000..6f567e38 --- /dev/null +++ b/automation/scripts/post_process_release_linux.sh @@ -0,0 +1,11 @@ +#! /bin/bash +# This script will bundle the game under Linux for publication +set -ex + +export PROD_TMP=./target/production_tmp + +rm -rf $PROD_TMP +mkdir -p $PROD_TMP + +mv ./target/release/desktop_wrapper $PROD_TMP/ldjam50-linux-x64 +chmod +x $PROD_TMP/ldjam50-linux-x64 \ No newline at end of file diff --git a/automation/scripts/post_process_release_windows.sh b/automation/scripts/post_process_release_windows.sh new file mode 100644 index 00000000..4091f074 --- /dev/null +++ b/automation/scripts/post_process_release_windows.sh @@ -0,0 +1,11 @@ +#! /bin/bash +# This script will bundle the game under Windows for publication +set -ex + +export PROD_TMP=./target/production_tmp + +rm -rf $PROD_TMP +mkdir -p $PROD_TMP + +mv ./target/release/desktop_wrapper $PROD_TMP/ldjam50-windows-x64 +chmod +x $PROD_TMP/ldjam50-windows-x64 \ No newline at end of file diff --git a/game/dist/README.md b/game/dist/README.md new file mode 100644 index 00000000..3edac11c --- /dev/null +++ b/game/dist/README.md @@ -0,0 +1,3 @@ +# Distributed files + +Anything put in here will be bundled with the final game executable. \ No newline at end of file diff --git a/game/dist/assets/.gitkeep b/game/dist/assets/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..c1f6d353 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,8 @@ +# If you see this, run `rustup self update` to get rustup 1.23 or newer. + +# NOTE: above comment is for older `rustup` (before TOML support was added), +# which will treat the first line as the toolchain name, and therefore show it +# to the user in the error, instead of "error: invalid channel name '[toolchain]'". + +[toolchain] +channel = "stable" \ No newline at end of file