mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 22:55:41 +00:00
* Ensure Bazel is available in self-hosted workflows * Allow Bazel CI to use Command Line Tools * Set macOS C++ deployment target for Bazel * Use Bazel macOS minimum OS flags * Raise macOS Bazel deployment target for filesystem * Ensure git-lfs is available for CI fetches * Authenticate CI LFS fetches with workflow token * Disable stale LFS hooks during CI checkout * Disable LFS filters during CI checkout * Prepare Git LFS before persistent checkout * Harden generated Bazel rc and LFS auth * Let Xcode sync skip without full Xcode * Harden Unity build cache markers * Require full Xcode for mactools sync
38 lines
987 B
YAML
38 lines
987 B
YAML
name: Eagle Build
|
|
|
|
on:
|
|
# Main pushes are covered by docker_build.yml which builds the same target
|
|
pull_request:
|
|
paths:
|
|
- 'src/main/scala/**'
|
|
- 'src/main/protobuf/net/eagle0/eagle/**'
|
|
- 'src/main/protobuf/net/eagle0/common/**'
|
|
- 'WORKSPACE'
|
|
- 'MODULE.bazel'
|
|
- 'BUILD.bazel'
|
|
- '.bazelrc'
|
|
- 'ci/github_actions/ensure_bazel_installed.sh'
|
|
- '.github/workflows/eagle_build.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, bazel, halfdan]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
lfs: false
|
|
- name: Ensure Bazel installed
|
|
run: ./ci/github_actions/ensure_bazel_installed.sh
|
|
- name: Build Eagle server
|
|
run: bazel build //src/main/scala/net/eagle0/eagle:eagle_server
|