Skip to content

Fix split/cp/stage zones being shared by all courses #878

Fix split/cp/stage zones being shared by all courses

Fix split/cp/stage zones being shared by all courses #878

name: Build pushes and pull requests
on:
push:
branches-ignore:
- dev
tags-ignore:
- v*
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
- 'cfg/**'
- 'gamedata/**'
- 'translations/**'
jobs:
get-version-string:
name: Get version string
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set vars
id: vars
run: |
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
outputs:
short_sha: ${{ steps.vars.outputs.short_sha }}
check-newlines:
name: Check for CRLF and final newlines
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./scripts/check-newlines.sh
check-formatting:
name: Check for consistent formatting
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: 'src'
exclude: 'sdk'
steps:
- uses: actions/checkout@v4
- uses: jidicula/[email protected]
with:
clang-format-version: '16'
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}
build-push:
if: ${{ github.event_name == 'push' }}
name: Build Push
uses: ./.github/workflows/build.yaml
needs: get-version-string
with:
version: ${{ github.ref_name }}-${{ needs.get-version-string.outputs.short_sha }}
build-pr:
if: ${{ github.event_name == 'pull_request' }}
name: Build PR
uses: ./.github/workflows/build.yaml
needs: get-version-string
with:
version: pr-${{ github.ref_name }}-${{ needs.get-version-string.outputs.short_sha }}