86
86
go-version : 1.22.x
87
87
- name : Install Pulumi CLI
88
88
uses : pulumi/actions@v5
89
+ - name : Install gotestsum
90
+
91
+ env :
92
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
93
+ with :
94
+ repo : gotestyourself/gotestsum
95
+ tag : v1.8.1
96
+ cache : enable
89
97
- name : Install netcoredbg (Linux)
90
98
if : matrix.os == 'ubuntu-latest'
91
99
run : |
@@ -101,84 +109,19 @@ jobs:
101
109
if : matrix.os == 'windows-latest'
102
110
run : |
103
111
scoop install netcoredbg
104
- - name : Install netcoredbg (Linux)
105
- if : matrix.os == 'ubuntu-latest'
112
+ - name : Install netcoredbg (MacOS)
113
+ if : matrix.os == 'macos-12'
114
+ id : netcoredbg
106
115
run : |
107
116
curl -sSL https://github.com/Samsung/netcoredbg/releases/download/3.1.1-1042/netcoredbg-osx-amd64.tar.gz -o netcoredbg.tar.gz
108
117
tar xzf netcoredbg.tar.gz
109
- sudo cp netcoredbg/* /usr/bin/
110
- - name : TestEmptyDotNet
111
- run : dotnet run integration test TestEmptyDotNet
112
- - name : TestStackReferenceDotnet
113
- run : dotnet run integration test TestStackReferenceDotnet
114
- - name : TestConstructDotnet
115
- run : dotnet run integration test TestConstructDotnet
116
- - name : TestPrintfDotNet
117
- run : dotnet run integration test TestPrintfDotNet
118
- - name : TestStackOutputsDotNet
119
- run : dotnet run integration test TestStackOutputsDotNet
120
- - name : TestStackComponentDotNet
121
- run : dotnet run integration test TestStackComponentDotNet
122
- - name : TestStackComponentServiceProviderDotNet
123
- run : dotnet run integration test TestStackComponentServiceProviderDotNet
124
- - name : TestConfigBasicDotNet
125
- run : dotnet run integration test TestConfigBasicDotNet
126
- - name : TestConfigSecretsWarnDotNet
127
- run : dotnet run integration test TestConfigSecretsWarnDotNet
128
- - name : TestStackReferenceSecretsDotnet
129
- run : dotnet run integration test TestStackReferenceSecretsDotnet
130
- - name : TestLargeResourceDotNet
131
- run : dotnet run integration test TestLargeResourceDotNet
132
- - name : TestConstructPlainDotnet
133
- run : dotnet run integration test TestConstructPlainDotnet
134
- - name : TestConstructUnknownDotnet
135
- run : dotnet run integration test TestConstructUnknownDotnet
136
- - name : TestConstructMethodsDotnet
137
- run : dotnet run integration test TestConstructMethodsDotnet
138
- - name : TestConstructMethodsUnknownDotnet
139
- run : dotnet run integration test TestConstructMethodsUnknownDotnet
140
- - name : TestConstructMethodsErrorsDotnet
141
- run : dotnet run integration test TestConstructMethodsErrorsDotnet
142
- - name : TestConstructProviderDotnet
143
- run : dotnet run integration test TestConstructProviderDotnet
144
- - name : TestGetResourceDotnet
145
- run : dotnet run integration test TestGetResourceDotnet
146
- - name : TestAboutDotnet
147
- run : dotnet run integration test TestAboutDotnet
148
- - name : TestDotNetTransformations
149
- run : dotnet run integration test TestDotNetTransformations
150
- - name : TestResourceRefsGetResourceDotnet
151
- run : dotnet run integration test TestResourceRefsGetResourceDotnet
152
- - name : TestDotNetAliasesRemame
153
- run : dotnet run integration test TestDotNetAliasesRemame
154
- - name : TestDotNetAliasesAdoptIntoComponent
155
- run : dotnet run integration test TestDotNetAliasesAdoptIntoComponent
156
- - name : TestDotNetAliasesRenameComponentAndChild
157
- run : dotnet run integration test TestDotNetAliasesRenameComponentAndChild
158
- - name : TestDotNetAliasesRetypeComponent
159
- run : dotnet run integration test TestDotNetAliasesRetypeComponent
160
- - name : TestDotNetAliasesRenameComponent
161
- run : dotnet run integration test TestDotNetAliasesRenameComponent
162
- - name : TestDotNetAliasesRetypeParents
163
- run : dotnet run integration test TestDotNetAliasesRetypeParents
164
- - name : TestProvider
165
- run : dotnet run integration test TestProvider
166
- - name : TestDeletedWith
167
- run : dotnet run integration test TestDeletedWith
168
- - name : TestDotNetTransforms
169
- run : dotnet run integration test TestDotNetTransforms
170
- - name : TestFailingTransfomationExitsProgram
171
- run : dotnet run integration test TestFailingTransfomationExitsProgram
172
- - name : TestProviderCall
173
- run : dotnet run integration test TestProviderCall
174
- - name : TestProviderCallInvalidArgument
175
- run : dotnet run integration test TestProviderCallInvalidArgument
176
- - name : TestProviderConstruct
177
- run : dotnet run integration test TestProviderConstruct
178
- - name : TestProviderConstructDependencies
179
- run : dotnet run integration test TestProviderConstructDependencies
180
- - name : TestProviderConstructUnknown
181
- run : dotnet run integration test TestProviderConstructUnknown
118
+ echo "netcoredbgpath=$(pwd)/netcoredbg/" >> ${GITHUB_OUTPUT}
119
+ - name : Integration tests
120
+ if : matrix.os == 'macos-12'
121
+ run : PATH="${{ steps.netcoredbg.outputs.netcoredbgpath}}":"$PATH" make test_integration
122
+ - name : Integration tests
123
+ if : matrix.os != 'macos-12'
124
+ run : make test_integration
182
125
183
126
info :
184
127
name : gather
0 commit comments