Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build-everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
jobs:
prepare-matrix:
name: Prepare build matrix
uses: a-sit-plus/internal-workflows/.github/workflows/prepare-matrix.yml@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/workflows/prepare-matrix.yml@v2
with:
file-name: ${{ inputs.matrix-file-name }}
runner: ${{ inputs.build-matrix-runner }}
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
uses: a-sit-plus/internal-workflows/.github/workflows/build-jar-matrix-entry.yml@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/workflows/build-jar-matrix-entry.yml@v2
with:
module: ${{ matrix.module }}
kotlin-version: ${{ inputs.kotlinVersion }}
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
uses: a-sit-plus/internal-workflows/.github/workflows/build-xc-matrix-entry.yml@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/workflows/build-xc-matrix-entry.yml@v2
with:
module: ${{ matrix.module }}
artifact-name: ${{ matrix.artifactName }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-jar-matrix-entry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Common setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2

- name: Build jar
run: ./gradlew assemble
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-xc-matrix-entry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Common setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2

- name: Build klibs
run: ./gradlew iosArm64MainKlibrary iosX64MainKlibrary
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:
jobs:
prepare-matrix:
name: Prepare test matrix
uses: a-sit-plus/internal-workflows/.github/workflows/prepare-matrix.yml@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/workflows/prepare-matrix.yml@v2
with:
file-name: ${{ inputs.matrix-file-name }}
runner: ${{ inputs.test-matrix-runner }}
Expand All @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}
uses: a-sit-plus/internal-workflows/.github/workflows/test-matrix-entry.yml@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/workflows/test-matrix-entry.yml@v2
with:
override-cache: ${{ inputs.override-cache }}
os: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

test:
needs: select-entry
uses: a-sit-plus/internal-workflows/.github/workflows/test-matrix-entry.yml@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/workflows/test-matrix-entry.yml@v2
with:
override-cache: ${{ inputs.override-cache }}
os: ${{ needs.select-entry.outputs.os }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test-matrix-entry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

steps:
- name: Common setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@feature/modularTests
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2
with:
override-cache: ${{ inputs.override-cache }}
enable-kvm: ${{ inputs.enable-kvm }}
Expand All @@ -77,7 +77,8 @@ jobs:
${{ inputs.testCommand }}

- name: Reporting
uses: a-sit-plus/internal-workflows/.github/actions/common-reporting@feature/modularTests
if: ${{ !cancelled() }}
uses: a-sit-plus/internal-workflows/.github/actions/common-reporting@v2
with:
report-name: ${{ github.workflow }}
matrix-identifier: ${{ runner.os }}-${{ inputs.name }}-${{ runner.arch }}
Expand Down