Skip to content

Commit

Permalink
Build on main, tags, and PRs (#293)
Browse files Browse the repository at this point in the history
As is this builds on any push and also any PR.  This results in double
workflows on PRs.
  • Loading branch information
altendky committed Dec 3, 2021
1 parent 6956880 commit 6385ba2
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/build-aarch64.yml
@@ -1,6 +1,14 @@
name: Build ARM64 wheel

on: [push, pull_request]
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'

jobs:
build_wheels:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/build-m1-wheel.yml
@@ -1,6 +1,14 @@
name: Build M1 Wheels

on: [push, pull_request]
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'

jobs:
build_wheels:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/build-test.yaml
@@ -1,6 +1,14 @@
name: Build and Test C++, Javascript, and Python

on: [push, pull_request]
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'

jobs:
build_wheels:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/build-wheels.yml
@@ -1,6 +1,14 @@
name: Build wheels

on: [push, pull_request]
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'

jobs:
build_wheels:
Expand Down

0 comments on commit 6385ba2

Please sign in to comment.