Skip to content

Commit 69725ef

Browse files
author
Shubham Chaturvedi
committed
fix: CI
1 parent 3533565 commit 69725ef

File tree

6 files changed

+27
-3
lines changed

6 files changed

+27
-3
lines changed

.github/workflows/daily_ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
uses: ./.github/workflows/library_rust_tests.yml
3434
with:
3535
dafny: '4.9.0'
36+
daily-ci-go:
37+
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
38+
uses: ./.github/workflows/library_go_tests.yml
39+
with:
40+
dafny: '4.9.0'
3641

3742
daily-ci-interop-tests:
3843
if: github.event_name != 'schedule' || github.repository_owner == 'aws'

.github/workflows/manual.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ jobs:
3737
with:
3838
dafny: ${{ inputs.dafny }}
3939
regenerate-code: ${{ inputs.regenerate-code }}
40+
manual-ci-go:
41+
uses: ./.github/workflows/library_go_tests.yml
42+
with:
43+
dafny: ${{ inputs.dafny }}
44+
regenerate-code: ${{ inputs.regenerate-code }}

.github/workflows/nighly_dafny.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
with:
3838
dafny: 'nightly-latest'
3939
regenerate-code: true
40+
dafny-nightly-go:
41+
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
42+
uses: ./.github/workflows/library_go_tests.yml
43+
with:
44+
dafny: 'nightly-latest'
45+
regenerate-code: true
4046

4147
cut-issue-on-failure:
4248
runs-on: ubuntu-latest

.github/workflows/pull.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
uses: ./.github/workflows/library_rust_tests.yml
2626
with:
2727
dafny: '4.9.0'
28+
pr-ci-go:
29+
uses: ./.github/workflows/library_go_tests.yml
30+
with:
31+
dafny: '4.9.0'
2832
pr-test-vectors:
2933
uses: ./.github/workflows/library_interop_tests.yml
3034
with:

.github/workflows/push.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
uses: ./.github/workflows/library_rust_tests.yml
2828
with:
2929
dafny: '4.9.0'
30+
push-ci-go:
31+
uses: ./.github/workflows/library_go_tests.yml
32+
with:
33+
dafny: '4.9.0'
3034
pr-test-vectors:
3135
uses: ./.github/workflows/library_interop_tests.yml
3236
with:

AwsEncryptionSDK/runtimes/net/Generated/AwsEncryptionSdk/TypeConversion.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,12 +473,12 @@ public static software.amazon.cryptography.encryptionsdk.internaldafny.types._IE
473473
);
474474
// OpaqueError is redundant, but listed for completeness.
475475
case OpaqueError exception:
476-
return new software.amazon.cryptography.encryptionsdk.internaldafny.types.Error_Opaque(exception, Dafny.Sequence<char>.FromString(exception.ToString()));
476+
return new software.amazon.cryptography.encryptionsdk.internaldafny.types.Error_Opaque(exception);
477477
case System.Exception exception:
478-
return new software.amazon.cryptography.encryptionsdk.internaldafny.types.Error_Opaque(exception, Dafny.Sequence<char>.FromString(exception.ToString()));
478+
return new software.amazon.cryptography.encryptionsdk.internaldafny.types.Error_Opaque(exception);
479479
default:
480480
// The switch MUST be complete for System.Exception, so `value` MUST NOT be an System.Exception. (How did you get here?)
481-
return new software.amazon.cryptography.encryptionsdk.internaldafny.types.Error_Opaque(value, Dafny.Sequence<char>.FromString(value.ToString()));
481+
return new software.amazon.cryptography.encryptionsdk.internaldafny.types.Error_Opaque(value);
482482
}
483483
}
484484
}

0 commit comments

Comments
 (0)