Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Only run CI on pushes to master and on all pull requests
Fixes #1668
  • Loading branch information
filmor committed Jan 9, 2022
commit 6edc2d289e0297a27e7ce9b087b570f9df849e14
10 changes: 7 additions & 3 deletions .github/workflows/ARM.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: GitHub Actions
name: Main (ARM)

on: [ push, pull_request ]
on:
push:
branches:
- master
pull_request:

jobs:
build-test-oracle:
build-test-arm:
name: Build and Test ARM64
runs-on: [self-hosted, linux, ARM64]
timeout-minutes: 15
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: GitHub Actions
name: Main (x64)

on: [ pull_request, push ]
on:
push:
branches:
- master
pull_request:

jobs:
build-test:
Expand Down