Skip to content

refactor: rename aegis β†’ orca across entire codebase #74

refactor: rename aegis β†’ orca across entire codebase

refactor: rename aegis β†’ orca across entire codebase #74

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
name: zig build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Build
run: zig build
- name: Version JSON
shell: bash
run: |
./zig-out/bin/orca version --json
./zig-out/bin/edge version --json
- name: Check Windows target from Unix runners
if: runner.os != 'Windows'
run: zig build check-windows
- name: Check release artifact naming references
shell: bash
run: |
grep -R "orca-v.*linux-amd64" scripts packaging .github/workflows
grep -R "edge-v.*linux-amd64" scripts packaging .github/workflows
grep -R "checksums.txt" scripts packaging .github/workflows