Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
limit the number of builds for MXE (#41410)
  • Loading branch information
3nids authored and github-actions[bot] committed Feb 8, 2021
1 parent 39f4eda commit 0029775
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions .github/workflows/mxe.yml
@@ -1,14 +1,26 @@
name: Windows cross build with MXE

on: [push, pull_request]

#on:
# push:
# branches-ignore:
# - '**'
# pull_request:
# branches-ignore:
# - '**'
on:
push:
branches:
- master
- release-**
paths:
- 'src/**'
- 'external/**'
- 'tests/**'
- 'ms-windows/**'
- 'CMakeLists.txt'
pull_request:
branches:
- master
- release-**
paths:
- 'src/**'
- 'external/**'
- 'tests/**'
- 'ms-windows/**'
- 'CMakeLists.txt'

jobs:
build:
Expand Down

0 comments on commit 0029775

Please sign in to comment.