Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #1786

Merged
merged 8 commits into from
Feb 22, 2024
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
85 changes: 18 additions & 67 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
name: Build & Test

on: pull_request
on:
push:
branches:
- '*'
- '*/*'
pull_request:
branches:
- '*'
- '*/*'

concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true

jobs:

build-core:
build-test:
runs-on: ubuntu-latest
timeout-minutes: 30

Expand All @@ -28,10 +36,10 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Build Core
run: cd core && ./test.sh
- name: Build & Test
run: cd projects && ./test.sh

build-android:
build-publish-local:
runs-on: ubuntu-latest
timeout-minutes: 30

Expand All @@ -47,46 +55,14 @@ jobs:
with:
distribution: 'zulu'
java-version: 11

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Install Core
run: cd core && ./install.sh

- name: Build Android
run: cd android && ./test.sh

build-compose:
runs-on: macos-latest
timeout-minutes: 30

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Install Core
run: cd core && ./install.sh

- name: Install Android
run: cd android && ./install.sh
- name: Build & Install
run: cd projects && ./install.sh

- name: Build AndroidX Compose
run: cd compose && ./install.sh

build-core-macos:
build-macos:
runs-on: macos-latest
timeout-minutes: 30

Expand All @@ -106,31 +82,6 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Run Core
run: cd core && ../gradlew macosX64Test --no-daemon --stacktrace

build-ktor:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Test
run: cd projects && ./gradlew :core:koin-core:macosX64Test --no-daemon --stacktrace

- name: Install Core
run: cd core && ./install.sh

- name: Build Ktor
run: cd ktor && ./test.sh
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "CodeQL"

on:
push:
branches: [ 'main','3.5.0' ]
branches: [ 'main' ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ 'main','3.5.0' ]
branches: [ 'main' ]
schedule:
- cron: '52 13 * * 6'

Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Build and install all
# working-directory: core
run: ./install_all.sh
run: cd projects && ./install.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/release-android.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/release-bom.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/release-compose.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/release-ktor.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/release-plugins.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release Core
name: Release

on:
push:
tags:
- 'core*'
- '*'

env:
IS_RELEASE: true
Expand Down Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Install Core
run: cd core && ./install.sh
- name: Install
run: cd projects && ./install.sh

- name: Release Core
run: cd core && ./release.sh
- name: Release
run: cd projects && ./release.sh


Loading
Loading