Skip to content

Commit e9252cc

Browse files
committed
Debug tests
1 parent aeb76fb commit e9252cc

7 files changed

Lines changed: 405 additions & 399 deletions

File tree

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
name: Check Public API
2-
on:
3-
workflow_dispatch:
4-
pull_request:
5-
push:
6-
branches:
7-
- jb-main
8-
9-
jobs:
10-
check-public-api:
11-
runs-on: macos-15-xlarge
12-
name: Check Public API
13-
steps:
14-
- name: Checkout Repository
15-
uses: actions/checkout@v5
16-
17-
- name: Setup Prerequisites
18-
uses: ./.github/actions/setup-prerequisites
19-
20-
- name: Setup Xcode
21-
uses: ./.github/actions/setup-xcode
22-
23-
- name: Check Public API
24-
run: |
25-
./gradlew jbApiCheck \
26-
--no-daemon --stacktrace
1+
#name: Check Public API
2+
#on:
3+
# workflow_dispatch:
4+
# pull_request:
5+
# push:
6+
# branches:
7+
# - jb-main
8+
#
9+
#jobs:
10+
# check-public-api:
11+
# runs-on: macos-15-xlarge
12+
# name: Check Public API
13+
# steps:
14+
# - name: Checkout Repository
15+
# uses: actions/checkout@v5
16+
#
17+
# - name: Setup Prerequisites
18+
# uses: ./.github/actions/setup-prerequisites
19+
#
20+
# - name: Setup Xcode
21+
# uses: ./.github/actions/setup-xcode
22+
#
23+
# - name: Check Public API
24+
# run: |
25+
# ./gradlew jbApiCheck \
26+
# --no-daemon --stacktrace
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Checks Release Notes in the PR description when:
2-
# opened - PR is opened
3-
# edited - The title/description are changed
4-
# synchronize - New commits appeared.
5-
# We don't use the new content, but we still need to mark this commit Green/Red in GitHub UI
6-
7-
name: Check Release Notes in the description
8-
on:
9-
pull_request:
10-
types: [opened, edited, synchronize]
11-
12-
jobs:
13-
check:
14-
runs-on: ubuntu-24.04
15-
steps:
16-
- uses: JetBrains/compose-multiplatform/tools/changelog/check-release-notes-github-action@master
1+
## Checks Release Notes in the PR description when:
2+
## opened - PR is opened
3+
## edited - The title/description are changed
4+
## synchronize - New commits appeared.
5+
## We don't use the new content, but we still need to mark this commit Green/Red in GitHub UI
6+
#
7+
#name: Check Release Notes in the description
8+
#on:
9+
# pull_request:
10+
# types: [opened, edited, synchronize]
11+
#
12+
#jobs:
13+
# check:
14+
# runs-on: ubuntu-24.04
15+
# steps:
16+
# - uses: JetBrains/compose-multiplatform/tools/changelog/check-release-notes-github-action@master
Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
1-
name: Compose Publish Dry Run
2-
on:
3-
workflow_dispatch:
4-
pull_request:
5-
push:
6-
branches:
7-
- jb-main
8-
9-
jobs:
10-
compose-native-publish:
11-
runs-on: macos-15-xlarge
12-
name: Dry Run Compose Publish Darwin + Native Linux
13-
steps:
14-
- name: Checkout Repository
15-
uses: actions/checkout@v5
16-
17-
- name: Setup Prerequisites
18-
uses: ./.github/actions/setup-prerequisites
19-
20-
- name: Setup Xcode
21-
uses: ./.github/actions/setup-xcode
22-
23-
- name: Compose Publish Darwin + Native Linux
24-
run: |
25-
./gradlew publishComposeJb -Pcompose.platforms=macos,ios,tvos,watchos,linux,mingw \
26-
--no-daemon --stacktrace
27-
28-
compose-web-publish:
29-
runs-on: ubuntu-24.04
30-
name: Dry Run Compose Publish Web
31-
steps:
32-
- name: Checkout Repository
33-
uses: actions/checkout@v5
34-
35-
- name: Setup Prerequisites
36-
uses: ./.github/actions/setup-prerequisites
37-
38-
- name: Compose Publish Web
39-
run: |
40-
./gradlew publishComposeJb -Pcompose.platforms=web \
41-
--no-daemon --stacktrace
42-
43-
compose-jvm-publish:
44-
runs-on: ubuntu-24.04
45-
name: Dry Run Compose Publish JVM
46-
steps:
47-
- name: Checkout Repository
48-
uses: actions/checkout@v5
49-
50-
- name: Setup Prerequisites
51-
uses: ./.github/actions/setup-prerequisites
52-
53-
- name: Compose Publish JVM
54-
run: |
55-
./gradlew publishComposeJb -Pcompose.platforms=jvm,android \
56-
--no-daemon --stacktrace
1+
#name: Compose Publish Dry Run
2+
#on:
3+
# workflow_dispatch:
4+
# pull_request:
5+
# push:
6+
# branches:
7+
# - jb-main
8+
#
9+
#jobs:
10+
# compose-native-publish:
11+
# runs-on: macos-15-xlarge
12+
# name: Dry Run Compose Publish Darwin + Native Linux
13+
# steps:
14+
# - name: Checkout Repository
15+
# uses: actions/checkout@v5
16+
#
17+
# - name: Setup Prerequisites
18+
# uses: ./.github/actions/setup-prerequisites
19+
#
20+
# - name: Setup Xcode
21+
# uses: ./.github/actions/setup-xcode
22+
#
23+
# - name: Compose Publish Darwin + Native Linux
24+
# run: |
25+
# ./gradlew publishComposeJb -Pcompose.platforms=macos,ios,tvos,watchos,linux,mingw \
26+
# --no-daemon --stacktrace
27+
#
28+
# compose-web-publish:
29+
# runs-on: ubuntu-24.04
30+
# name: Dry Run Compose Publish Web
31+
# steps:
32+
# - name: Checkout Repository
33+
# uses: actions/checkout@v5
34+
#
35+
# - name: Setup Prerequisites
36+
# uses: ./.github/actions/setup-prerequisites
37+
#
38+
# - name: Compose Publish Web
39+
# run: |
40+
# ./gradlew publishComposeJb -Pcompose.platforms=web \
41+
# --no-daemon --stacktrace
42+
#
43+
# compose-jvm-publish:
44+
# runs-on: ubuntu-24.04
45+
# name: Dry Run Compose Publish JVM
46+
# steps:
47+
# - name: Checkout Repository
48+
# uses: actions/checkout@v5
49+
#
50+
# - name: Setup Prerequisites
51+
# uses: ./.github/actions/setup-prerequisites
52+
#
53+
# - name: Compose Publish JVM
54+
# run: |
55+
# ./gradlew publishComposeJb -Pcompose.platforms=jvm,android \
56+
# --no-daemon --stacktrace

0 commit comments

Comments
 (0)