From 408ccafd5adcb27fe8e89a3065648093abb31fdc Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 6 Apr 2021 11:02:32 -0400 Subject: [PATCH] CI scripts --- .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++ .github/workflows/bundle.yml | 41 ++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/bundle.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..9a2485c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: Build + +on: + push: + branches: + - master + 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 + - name: Install Raylib deps + if: runner.os == 'Linux' + run: apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --all-features \ No newline at end of file diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml new file mode 100644 index 0000000..5f2419c --- /dev/null +++ b/.github/workflows/bundle.yml @@ -0,0 +1,41 @@ +name: Bundle + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + 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 + + - name: Install cross compile tool + run: cargo install cross + + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Build bundles + run: ./bundle/create-releases.sh + + - name: Upload Linux bundle + uses: actions/upload-artifact@v2 + with: + name: linux + path: ./bundle/linux/release-x86_64-unknown-linux-gnu.zip + + - name: Upload Windows bundle + uses: actions/upload-artifact@v2 + with: + name: windows + path: ./bundle/windows/release-x86_64-pc-windows-gnu.zip + \ No newline at end of file