Skip to content

Commit

Permalink
ci: 👷 Add a regular autobuild and add a cache
Browse files Browse the repository at this point in the history
  • Loading branch information
melody-rs committed Aug 3, 2023
1 parent 9bc1e65 commit 09cc2f7
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 39 deletions.
116 changes: 116 additions & 0 deletions .github/workflows/build-steam.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
on:
push:
branches: master
workflow_dispatch:

name: Autobuild Steam

jobs:
build-ubuntu:
name: Build Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Install libraries
run: |
sudo apt update
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --features steamworks --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/steamworks/redistributable_bin/linux64/libsteam_api.so ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: luminol-linux
path: ${{ github.workspace }}/artifact/

build-windows:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --features steamworks --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol.exe ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/steamworks/redistributable_bin/win64/steam_api64.dll ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: luminol-windows
path: ${{ github.workspace }}/artifact/

build-mac:
name: Build MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --features steamworks --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/steamworks/redistributable_bin/osx/libsteam_api.dylib ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: luminol-mac
path: ${{ github.workspace }}/artifact/

deploy-steam:
name: Deploy Steam
runs-on: ubuntu-latest
needs: [build-ubuntu, build-windows, build-mac]
steps:
- name: Extract branch name
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: ${{ github.workspace }}/artifacts
- name: Get current date
id: date
run: |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Deploy to steam
uses: game-ci/steam-deploy@v3
with:
username: ${{ secrets.STEAM_USERNAME }}
configVdf: ${{ secrets.STEAM_CONFIG_VDF}}
appId: 2501490
buildDescription: nightly-${{ steps.date.outputs.date }}
rootPath: artifacts # ??
depot1Path: luminol-windows
depot2Path: luminol-linux
depot3Path: luminol-mac
releaseBranch: beta # ${{ steps.extract_branch.outputs.branch }} todo: figure this out

50 changes: 11 additions & 39 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
on:
push:
branches: master
workflow_dispatch:

name: Autobuild
Expand All @@ -20,13 +19,14 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --features steamworks --release
run: cargo build --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/steamworks/redistributable_bin/linux64/libsteam_api.so ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
Expand All @@ -43,13 +43,14 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --features steamworks --release
run: cargo build --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol.exe ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/steamworks/redistributable_bin/win64/steam_api64.dll ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
Expand All @@ -66,45 +67,16 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --features steamworks --release
run: cargo build --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/steamworks/redistributable_bin/osx/libsteam_api.dylib ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact\
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: luminol-mac
path: ${{ github.workspace }}/artifact/

deploy-steam:
name: Deploy Steam
runs-on: ubuntu-latest
needs: [build-ubuntu, build-windows, build-mac]
steps:
- name: Extract branch name
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: ${{ github.workspace }}/artifacts
- name: Get current date
id: date
run: |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Deploy to steam
uses: game-ci/steam-deploy@v3
with:
username: ${{ secrets.STEAM_USERNAME }}
configVdf: ${{ secrets.STEAM_CONFIG_VDF}}
appId: 2501490
buildDescription: nightly-${{ steps.date.outputs.date }}
rootPath: artifacts # ??
depot1Path: luminol-windows
depot2Path: luminol-linux
depot3Path: luminol-mac
releaseBranch: beta # ${{ steps.extract_branch.outputs.branch }} todo: figure this out

path: ${{ github.workspace }}/artifact/
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml → .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo check --all-features

test:
Expand All @@ -32,6 +34,8 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-04-21
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo test --lib

fmt:
Expand All @@ -49,6 +53,8 @@ jobs:
with:
toolchain: nightly-2023-04-21
components: rustfmt
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check

clippy:
Expand All @@ -66,4 +72,6 @@ jobs:
with:
toolchain: nightly-2023-04-21
components: clippy
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- run: cargo clippy -- # -D warnings

0 comments on commit 09cc2f7

Please sign in to comment.