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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# Runs a single command using the runners shell
- name: Run Build
run: |
./gradlew --stacktrace --no-problems-report build
./gradlew --stacktrace --no-problems-report build
shell: bash
#Run regression tests
- name: Run regression test 2.9.8
Expand All @@ -61,7 +61,7 @@ jobs:

# Generate distro
- name: Create Distro
run: ./gradlew --stacktrace --no-problems-report native-cli:distro
run: ./gradlew --stacktrace --no-problems-report native-cli:distro
shell: bash

# Upload the artifact file
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ jobs:
strategy:
matrix:
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [ ubuntu-latest, windows-latest ]
os: [ macos-latest, ubuntu-latest ]
include:
# - os: windows-latest
# script_name: windows
- os: ubuntu-latest
script_name: linux
- os: macos-latest
script_name: osx

runs-on: ${{ matrix.os }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -48,12 +47,12 @@ jobs:
# Runs a single command using the runners shell
- name: Run Build
run: |
./gradlew build -PnativeVersion=${{env.NATIVE_VERSION}}
./gradlew --stacktrace --no-problems-report build -PnativeVersion=${{env.NATIVE_VERSION}}
shell: bash

# Generate distro
- name: Create Distro
run: ./gradlew native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}}
run: ./gradlew --stacktrace --no-problems-report native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}}
shell: bash

# Upload the artifact file
Expand Down
Loading