Skip to content

Commit

Permalink
Add Github CI Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eflumerf committed Dec 19, 2024
1 parent 6f722f2 commit 16080f0
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/mu2e-build-single-pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build Single Pkg Workflow

on:
push:
branches:
- develop
paths-ignore:
- 'docs/**'
- '.github/**'
pull_request:
branches: [ develop ]
workflow_dispatch:

jobs:

build_single_pkg:
name: build single pkg
uses: Mu2e/.github/.github/workflows/mu2e-build-single-pkg.yml@stable
24 changes: 24 additions & 0 deletions .github/workflows/mu2e-develop-cpp-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build-develop

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches-ignore:
- develop
- stable
paths-ignore:
- 'docs/**'
- '.github/**'
pull_request:
branches: [ develop ]
schedule:
- cron: "0 7 * * *"

workflow_dispatch:


jobs:
build_against_dev_release:
name: Build against develop
uses: Mu2e/.github/.github/workflows/mu2e-develop-cpp-ci.yml@stable
18 changes: 18 additions & 0 deletions .github/workflows/mu2e-test-single-pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test Single Pkg Workflow

on:
push:
branches:
- develop
paths-ignore:
- 'docs/**'
- '.github/**'
pull_request:
branches: [ develop ]
workflow_dispatch:

jobs:

build_single_pkg:
name: test single pkg
uses: Mu2e/.github/.github/workflows/mu2e-test-single-pkg.yml@stable

0 comments on commit 16080f0

Please sign in to comment.