From ab2cd86db03e3cb0dc6e53bd0253a5329880dd10 Mon Sep 17 00:00:00 2001 From: David Bieregger <46626041+BierDav@users.noreply.github.com> Date: Wed, 17 May 2023 23:40:24 +0200 Subject: [PATCH] Use macos as run target for all automations, Double workflow timeouts (#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 --- .github/workflows/continuous-integration.yml | 6 +++--- .github/workflows/pr-check.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- kotlin-js-store/yarn.lock | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 65246f6..ca54bc0 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -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 @@ -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() diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 8f113de..5c015ba 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -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 @@ -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() diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e117dd..03466ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ on: jobs: build: - timeout-minutes: 15 + timeout-minutes: 30 runs-on: macos-latest steps: @@ -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() diff --git a/kotlin-js-store/yarn.lock b/kotlin-js-store/yarn.lock index 93faeb8..985f7ab 100644 --- a/kotlin-js-store/yarn.lock +++ b/kotlin-js-store/yarn.lock @@ -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"