File tree Expand file tree Collapse file tree 6 files changed +27
-3
lines changed
AwsEncryptionSDK/runtimes/net/Generated/AwsEncryptionSdk Expand file tree Collapse file tree 6 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 33
33
uses : ./.github/workflows/library_rust_tests.yml
34
34
with :
35
35
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'
36
41
37
42
daily-ci-interop-tests :
38
43
if : github.event_name != 'schedule' || github.repository_owner == 'aws'
Original file line number Diff line number Diff line change 37
37
with :
38
38
dafny : ${{ inputs.dafny }}
39
39
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 }}
Original file line number Diff line number Diff line change 37
37
with :
38
38
dafny : ' nightly-latest'
39
39
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
40
46
41
47
cut-issue-on-failure :
42
48
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 25
25
uses : ./.github/workflows/library_rust_tests.yml
26
26
with :
27
27
dafny : ' 4.9.0'
28
+ pr-ci-go :
29
+ uses : ./.github/workflows/library_go_tests.yml
30
+ with :
31
+ dafny : ' 4.9.0'
28
32
pr-test-vectors :
29
33
uses : ./.github/workflows/library_interop_tests.yml
30
34
with :
Original file line number Diff line number Diff line change 27
27
uses : ./.github/workflows/library_rust_tests.yml
28
28
with :
29
29
dafny : ' 4.9.0'
30
+ push-ci-go :
31
+ uses : ./.github/workflows/library_go_tests.yml
32
+ with :
33
+ dafny : ' 4.9.0'
30
34
pr-test-vectors :
31
35
uses : ./.github/workflows/library_interop_tests.yml
32
36
with :
Original file line number Diff line number Diff line change @@ -473,12 +473,12 @@ public static software.amazon.cryptography.encryptionsdk.internaldafny.types._IE
473
473
) ;
474
474
// OpaqueError is redundant, but listed for completeness.
475
475
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 ) ;
477
477
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 ) ;
479
479
default :
480
480
// 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 ) ;
482
482
}
483
483
}
484
484
}
You can’t perform that action at this time.
0 commit comments