mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
more debugging
This commit is contained in:
parent
fcbf8cca96
commit
a694792022
2 changed files with 18 additions and 12 deletions
29
.github/workflows/workflow.yml
vendored
29
.github/workflows/workflow.yml
vendored
|
@ -68,25 +68,30 @@ jobs:
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
channel: stable
|
channel: stable
|
||||||
flutter-version: "3.10.6"
|
flutter-version: 3.10.6
|
||||||
cache: true
|
cache: true
|
||||||
precache: true
|
precache: true
|
||||||
- run: dart --version
|
- run: dart --version
|
||||||
shell: bash
|
shell: bash
|
||||||
- run: flutter --version
|
- run: flutter --version
|
||||||
shell: bash
|
shell: bash
|
||||||
- run: ls -la $FLUTTER_ROOT
|
- name: Run first test
|
||||||
shell: bash
|
run: |
|
||||||
- run: ls -la $FLUTTER_ROOT/bin
|
cd $FLUTTER_ROOT/bin/cache/artifacts
|
||||||
shell: bash
|
test -d material_fonts
|
||||||
- run: ls -la $FLUTTER_ROOT/bin/cache
|
|
||||||
shell: bash
|
|
||||||
- run: ls -la $FLUTTER_ROOT/bin/cache/artifacts
|
|
||||||
shell: bash
|
|
||||||
- run: ls -la $FLUTTER_ROOT/bin/cache/artifacts/engine
|
|
||||||
shell: bash
|
|
||||||
- run: test -d $FLUTTER_ROOT/bin/cache/artifacts/engine/linux-amd64-release
|
|
||||||
shell: bash
|
shell: bash
|
||||||
|
- name: Run more tests
|
||||||
|
run: |
|
||||||
|
cd $FLUTTER_ROOT/bin/cache/artifacts/engine
|
||||||
|
test -d android-arm
|
||||||
|
test -d android-arm-profile
|
||||||
|
test -d android-arm-release
|
||||||
|
test -d android-arm64
|
||||||
|
test -d android-arm64-profile
|
||||||
|
test -d android-arm64-release
|
||||||
|
test -d linux-x64
|
||||||
|
test -d linux-x64-profile
|
||||||
|
test -d linux-x64-release
|
||||||
test_print_output:
|
test_print_output:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -48,6 +48,7 @@ outputs:
|
||||||
value: '${{ steps.flutter-action.outputs.CACHE-KEY }}'
|
value: '${{ steps.flutter-action.outputs.CACHE-KEY }}'
|
||||||
CHANNEL:
|
CHANNEL:
|
||||||
value: '${{ steps.flutter-action.outputs.CHANNEL }}'
|
value: '${{ steps.flutter-action.outputs.CHANNEL }}'
|
||||||
|
description: 'The Flutter build release channel'
|
||||||
VERSION:
|
VERSION:
|
||||||
value: '${{ steps.flutter-action.outputs.VERSION }}'
|
value: '${{ steps.flutter-action.outputs.VERSION }}'
|
||||||
ARCHITECTURE:
|
ARCHITECTURE:
|
||||||
|
|
Loading…
Add table
Reference in a new issue