Skip to content

Commit

Permalink
ci: set up perf workflow job and create initial workflow
Browse files Browse the repository at this point in the history
Set up the initial workflow to build upon.
  • Loading branch information
josephperrott authored and dgp1130 committed Nov 22, 2024
1 parent 34574b2 commit a533465
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Performance Tracking

on:
push:
branches:
- main

permissions: {}

defaults:
run:
shell: bash

jobs:
list:
timeout-minutes: 3
runs-on: ubuntu-latest
outputs:
workflows: ${{ steps.workflows.outputs.workflows }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@53fb7c37cf14343f14ed79e2fefbbb2489ead4ee
- name: Install node modules
run: yarn install --immutable
- id: workflows
run: echo "workflows=$(yarn ng-dev perf workflows --list)" >> "$GITHUB_OUTPUT"

workflow:
timeout-minutes: 30
runs-on: ubuntu-latest
needs: list
strategy:
matrix:
workflow: ${{ fromJSON(needs.list.outputs.workflows) }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@53fb7c37cf14343f14ed79e2fefbbb2489ead4ee
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@53fb7c37cf14343f14ed79e2fefbbb2489ead4ee
- name: Install node modules
run: yarn install --immutable
- run: yarn ng-dev perf workflows --name ${{ matrix.workflow }}
7 changes: 7 additions & 0 deletions .ng-dev/dx-perf-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
workflows:
build-cli:
name: Build cli
prepare:
- bazel clean
workflow:
- bazel build //packages/angular/cli:npm_package

0 comments on commit a533465

Please sign in to comment.