Skip to content

Bump uuid from 3.0.7 to 4.1.0 in /packages/etebase #30

Bump uuid from 3.0.7 to 4.1.0 in /packages/etebase

Bump uuid from 3.0.7 to 4.1.0 in /packages/etebase #30

Workflow file for this run

name: CI/CD for etebase
on:
workflow_dispatch:
push:
paths:
- "packages/etebase/**"
- ".github/workflows/etebase_ci.yaml"
- ".github/workflows/etebase_cd.yaml"
jobs:
ci:
name: CI
uses: Skycoder42/dart_test_tools/.github/workflows/dart.yml@main
with:
workingDirectory: packages/etebase
buildRunner: true
buildRunnerArgs: >-
--delete-conflicting-outputs
--define etebase:etebase_client_builder=restoreMode=true
--define etebase:etebase_isolate_builder=restoreMode=true
unitTestPaths: test/unit
coverageExclude: >-
"lib/src/gen/**"
"**/*.freezed.dart"
integrationTestPaths: -j1 test/integration
integrationTestCacheConfig: >-
{
"key": "etebase-libetebase-v0.5.5",
"path": "packages/etebase/tool/integration/libetebase"
}
integrationTestSetup: >-
{
"linux": "bash tool/integration/setup_linux.sh v0.5.5",
"macos": "bash tool/integration/setup_macos.sh v0.5.5",
"windows": "powershell -File tool\\integration\\setup_win.ps1 v0.5.5"
}
cd:
name: CD
uses: Skycoder42/dart_test_tools/.github/workflows/release.yml@main
needs:
- ci
with:
workingDirectory: packages/etebase
tagPrefix: etebase-v
secrets:
githubToken: ${{ secrets.GH_PAT }}