Skip to content

Commit

Permalink
Use macos as run target for all automations, Double workflow timeouts (
Browse files Browse the repository at this point in the history
…#19)

* Fix broken gradle.properties import

Use macos as job runner

* Remove gradle build --info

* Remove deprecated targets. For more information see https://kotlinlang.org/docs/native-target-support.html#deprecated-targets

* Run watchosX64 tests separately

* Run watchosX64 tests separately

* Run watchosX64 tests separately

* Add yarn lock
Bump KGP to 1.8.21

* Remove separate job for watchosx64 tests
Update yarn.lock

* Use macos as run target for all automations
Double workflow timeouts

* Update yarn.lock

* Remove --info option to make CI Automation output less verbose

* Remove --info option to make CI Automation output less verbose
  • Loading branch information
BierDav committed May 17, 2023
1 parent 4745e0c commit ab2cd86
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ on:

jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-latest
timeout-minutes: 30
runs-on: macos-latest

steps:
- name: Checkout the repo
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
run: chmod +x gradlew

- name: Build project and run tests with Gradle
run: ./gradlew clean build --info
run: ./gradlew clean build

- name: Bundle the failed build report
if: failure()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ on:

jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-latest
timeout-minutes: 30
runs-on: macos-latest

steps:
- name: Checkout the repo
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
run: chmod +x gradlew

- name: Build project and run tests
run: ./gradlew clean build --info
run: ./gradlew clean build

- name: Bundle the failed build report
if: failure()
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build:
timeout-minutes: 15
timeout-minutes: 30
runs-on: macos-latest

steps:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
run: chmod +x gradlew

- name: Build project and run tests with Gradle
run: ./gradlew clean build
run: ./gradlew clean build --info

- name: Bundle the failed build report
if: failure()
Expand Down
6 changes: 3 additions & 3 deletions kotlin-js-store/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
color-convert "^2.0.1"

anymatch@~3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
version "3.1.3"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
Expand Down

0 comments on commit ab2cd86

Please sign in to comment.