Skip to content

Commit dd91845

Browse files
authored
W-20004524: Disable windows release (#102)
1 parent 97db32e commit dd91845

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Runs a single command using the runners shell
4848
- name: Run Build
4949
run: |
50-
./gradlew --stacktrace --no-problems-report build
50+
./gradlew --stacktrace --no-problems-report build
5151
shell: bash
5252
#Run regression tests
5353
- name: Run regression test 2.9.8
@@ -61,7 +61,7 @@ jobs:
6161

6262
# Generate distro
6363
- name: Create Distro
64-
run: ./gradlew --stacktrace --no-problems-report native-cli:distro
64+
run: ./gradlew --stacktrace --no-problems-report native-cli:distro
6565
shell: bash
6666

6767
# Upload the artifact file

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ jobs:
1313
strategy:
1414
matrix:
1515
# os: [macos-latest, ubuntu-latest, windows-latest]
16-
os: [ ubuntu-latest, windows-latest ]
16+
os: [ macos-latest, ubuntu-latest ]
1717
include:
1818
# - os: windows-latest
1919
# script_name: windows
2020
- os: ubuntu-latest
2121
script_name: linux
2222
- os: macos-latest
2323
script_name: osx
24-
2524
runs-on: ${{ matrix.os }}
2625
# Steps represent a sequence of tasks that will be executed as part of the job
2726
steps:
@@ -48,12 +47,12 @@ jobs:
4847
# Runs a single command using the runners shell
4948
- name: Run Build
5049
run: |
51-
./gradlew build -PnativeVersion=${{env.NATIVE_VERSION}}
50+
./gradlew --stacktrace --no-problems-report build -PnativeVersion=${{env.NATIVE_VERSION}}
5251
shell: bash
5352

5453
# Generate distro
5554
- name: Create Distro
56-
run: ./gradlew native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}}
55+
run: ./gradlew --stacktrace --no-problems-report native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}}
5756
shell: bash
5857

5958
# Upload the artifact file

0 commit comments

Comments
 (0)