Files
Pumpkin/.github/workflows/rust.yml
Alexander Medvedev 8da91bae6b lets try this
2025-08-12 14:26:00 +02:00

171 lines
5.5 KiB
YAML

name: Cargo Build, Test, and Linting
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
format:
name: Check formatting
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --check
clippy:
name: Run lints
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets --all-features
build_and_test:
name: Build project and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: cargo test --verbose
build_release:
name: Build project in release (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: cargo build --verbose --release
- name: Export executable
uses: actions/upload-artifact@v4
with:
name: pumpkin-${{ matrix.os }}
compression-level: 9
path: target/release/pumpkin*
clippy_release:
name: Run lints in release mode
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --release --all-targets --all-features
release_on_push:
name: Create & Upload Release
runs-on: ubuntu-latest
# This job only runs after all `build_release` jobs have completed successfully
needs: [build_release]
# This job only runs on a successful push to the master branch
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds
steps:
- name: Checkout the repository
uses: actions/checkout@v4
# Creates a draft release for the current commit
- name: Create Draft GitHub Release
id: create-release
run: |
RELEASE_TAG="per-commit-${{ github.sha }}"
RELEASE_TITLE="Build ${{ github.sha }}"
# Using gh CLI to create a new draft release
RELEASE_URL=$(gh release create "${RELEASE_TAG}" \
--draft \
--title "${RELEASE_TITLE}" \
--notes 'Per-commit build based on ${{ github.repository }}@${{ github.sha }}' \
--repo ${{ env.NIGHTLY_REPO }})
# Extract the release ID from the API response
TEMP_TAG=$(basename "$RELEASE_URL")
RELEASE_ID=$( \
gh api -H "Accept: application/vnd.github+json" \
"/repos/${NIGHTLY_REPO}/releases/tags/${TEMP_TAG}" \
| jq '.id' \
)
echo "RELEASE_ID=${RELEASE_ID}" >> ${GITHUB_OUTPUT}
env:
GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }}
# Download and upload the Linux artifact
- name: Download Linux executable
uses: actions/download-artifact@v4
with:
name: pumpkin-ubuntu-latest
path: ./
- name: Upload Linux executable to release
run: |
gh release upload ${{ steps.create-release.outputs.release-id }} ./pumpkin --repo ${{ env.NIGHTLY_REPO }}
env:
GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }}
# Download and upload the Windows artifact
- name: Download Windows executable
uses: actions/download-artifact@v4
with:
name: pumpkin-windows-latest
path: ./
- name: Upload Windows executable to release
run: |
gh release upload ${{ steps.create-release.outputs.release-id }} ./pumpkin.exe --repo ${{ env.NIGHTLY_REPO }}
env:
GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }}
# Download and upload the macOS artifact
- name: Download macOS executable
uses: actions/download-artifact@v4
with:
name: pumpkin-macos-latest
path: ./
- name: Upload macOS executable to release
run: |
gh release upload ${{ steps.create-release.outputs.release-id }} ./pumpkin --repo ${{ env.NIGHTLY_REPO }}
env:
GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }}
# Publish the release
- name: Publish as latest
run: |
gh api \
--method PATCH \
-H "Accept: application/vnd.github+json" \
"/repos/${NIGHTLY_REPO}/releases/${RELEASE_ID}" \
-F draft=false -F prerelease=true
env:
GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }}
RELEASE_ID: ${{ steps.create-release.outputs.release-id }}