Skip to content

Commit d9e2a1e

Browse files
author
Shubham Chaturvedi
committed
fix: CI
1 parent 511ed35 commit d9e2a1e

4 files changed

Lines changed: 11 additions & 20 deletions

File tree

.github/actions/polymorph_codegen/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,6 @@ runs:
8888
run: |
8989
make polymorph_python
9090
91-
- name: Regenerate Go code using smithy-dafny
92-
working-directory: ./${{ inputs.library }}
93-
shell: bash
94-
run: |
95-
make polymorph_go
96-
9791
- name: Check regenerated code against commited code
9892
# Composite action inputs seem to not actually support booleans properly for some reason
9993
if: inputs.diff-generated-code == 'true'

.github/workflows/library_go_tests.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,17 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
library:
23-
[
24-
StandardLibrary,
25-
]
22+
library: [StandardLibrary]
2623
go-version: ["1.23"]
2724
os: [
28-
# TODO fix Dafny-generated tests on Windows;
29-
# the sys.path workaround for generated Dafny doesn't work on Windows.
30-
# Note: only tests use the sys.path workaround, not source code.
31-
# Windows source code is tested downstream (ex. ESDK-Python CI).
32-
# windows-latest,
33-
ubuntu-latest,
34-
macos-13,
35-
]
25+
# TODO fix Dafny-generated tests on Windows;
26+
# the sys.path workaround for generated Dafny doesn't work on Windows.
27+
# Note: only tests use the sys.path workaround, not source code.
28+
# Windows source code is tested downstream (ex. ESDK-Python CI).
29+
# windows-latest,
30+
ubuntu-latest,
31+
macos-13,
32+
]
3633
runs-on: ${{ matrix.os }}
3734
defaults:
3835
run:

StandardLibrary/runtimes/go/ImplementationFromDafny-go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module github.com/dafny-lang/DafnyStandardLibGo
22

33
go 1.23.0
44

5-
require github.com/dafny-lang/DafnyRuntimeGo/v4 v4.8.0
5+
require github.com/dafny-lang/DafnyRuntimeGo/v4 v4.9.1
66

77
require github.com/google/uuid v1.6.0

StandardLibrary/runtimes/go/TestsFromDafny-go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.0
55
replace github.com/dafny-lang/DafnyStandardLibGo v0.0.0 => ../ImplementationFromDafny-go
66

77
require (
8-
github.com/dafny-lang/DafnyRuntimeGo/v4 v4.8.0
8+
github.com/dafny-lang/DafnyRuntimeGo/v4 v4.9.1
99
github.com/dafny-lang/DafnyStandardLibGo v0.0.0
1010
)
1111

0 commit comments

Comments
 (0)