diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 246d1b7a..b628bb7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -210,12 +210,15 @@ jobs: echo '127.0.0.1 vc-rest-echo.trustbloc.local' | sudo tee -a /etc/hosts echo '127.0.0.1 api-gateway.trustbloc.local' | sudo tee -a /etc/hosts echo '127.0.0.1 cognito-mock.trustbloc.local' | sudo tee -a /etc/hosts + - name: brew upgrade + run: | + brew upgrade - name: Install and start docker - uses: douglascamata/setup-docker-macos-action@8d5fa43892aed7eee4effcdea113fd53e4d4bf83 + uses: douglascamata/setup-docker-macos-action@v1-alpha with: upgrade-qemu: false - lima: v0.22.0 - colima: v0.7.3 + lima: v1.0.4 + colima: v0.8.1 - name: Download artifacts (Docker images) from previous workflows uses: actions/download-artifact@v4 - name: Load mock-login-consent server diff --git a/demo/app/integration_test/openid4ci_test.dart b/demo/app/integration_test/openid4ci_test.dart index f899409d..e6908fdf 100644 --- a/demo/app/integration_test/openid4ci_test.dart +++ b/demo/app/integration_test/openid4ci_test.dart @@ -84,7 +84,8 @@ void main() async { await walletSDKPlugin.presentCredential( selectedCredentials: credentials, customScopeList: customScopesList, attestationVC: attestationVC); } - }); + }, + timeout: Timeout.none ); testWidgets('Testing openid4vc with multiple credentials', (tester) async { const didMethodTypes = String.fromEnvironment('WALLET_DID_METHODS'); @@ -141,7 +142,7 @@ void main() async { }; await walletSDKPlugin.presentCredential(selectedCredentials: matchedCreds, customScopeList: customScopesList); - }); + }timeout: Timeout.none); testWidgets('Testing openid4vc with the auth code flow', (tester) async { const didMethodTypes = String.fromEnvironment('WALLET_DID_METHODS');