Skip to content

Commit 945b49d

Browse files
committed
Change maven.yml
- Run the tests only for Windows - Run them only on push operations for certain branches
1 parent 3670670 commit 945b49d

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/junit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Publish Unit Test Results
22

3-
on:
4-
workflow_run:
5-
workflows: ["SWT Matrix Build"]
6-
types:
7-
- completed
3+
#on:
4+
# workflow_run:
5+
# workflows: ["SWT Matrix Build"]
6+
# types:
7+
# - completed
88

99
permissions:
1010
contents: read

.github/workflows/maven.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ concurrency:
88

99
on:
1010
push:
11-
branches: [ master ]
12-
pull_request:
13-
branches: [ master ]
14-
types: [opened, reopened, synchronize, labeled]
11+
branches: [ bug/** ]
12+
# pull_request:
13+
# branches: [ master ]
14+
# types: [opened, reopened, synchronize, labeled]
1515

1616
env:
1717
SWT_GTK4: "${{ contains(github.event.pull_request.labels.*.name, 'gtk4') && '1' || '0' }}"
@@ -32,10 +32,10 @@ jobs:
3232
matrix:
3333
java: [ '21' ]
3434
config:
35-
- { name: Linux, os: ubuntu-latest, native: gtk.linux.x86_64 }
35+
# - { name: Linux, os: ubuntu-latest, native: gtk.linux.x86_64 }
3636
- { name: Windows, os: windows-latest, native: win32.win32.x86_64 }
37-
- { name: MacOS x86, os: macos-13, native: cocoa.macosx.x86_64 }
38-
- { name: MacOS ARM, os: macos-latest, native: cocoa.macosx.aarch64 }
37+
# - { name: MacOS x86, os: macos-13, native: cocoa.macosx.x86_64 }
38+
# - { name: MacOS ARM, os: macos-latest, native: cocoa.macosx.aarch64 }
3939
name: Verify ${{ matrix.config.name }} with Java-${{ matrix.java }}
4040
runs-on: ${{ matrix.config.os }}
4141
steps:

0 commit comments

Comments
 (0)