@@ -14,132 +14,12 @@ env:
14
14
PULUMI_TEST_OWNER : " moolumi"
15
15
16
16
jobs :
17
- setup_matrix :
18
- runs-on : ubuntu-latest
19
- outputs :
20
- matrix : ${{ steps.set-matrix.outputs.matrix }}
21
- steps :
22
- - id : set-matrix
23
- run : |
24
- os="${{ contains(github.event.pull_request.labels.*.name, 'ci/test') && 'ubuntu-latest macos-latest windows-latest' || 'ubuntu-latest' }}"
25
- echo "matrix={\"os\": $(echo $os | jq -cR 'split(" ")')}" >> $GITHUB_OUTPUT
26
-
27
- format :
28
- runs-on : ubuntu-latest
29
- steps :
30
- - name : Checkout code
31
- uses : actions/checkout@v4
32
- - name : Setup dotnet SDK v6.0
33
- uses : actions/setup-dotnet@v4
34
- - name : Format Pulumi SDK
35
- run : dotnet run format-sdk verify
36
-
37
- build :
38
- needs : setup_matrix
39
- strategy :
40
- matrix :
41
- os : ${{ fromJson(needs.setup_matrix.outputs.matrix).os }}
42
- dotnet-version : [6.0.x, 8.0.x]
43
-
44
- runs-on : ${{ matrix.os }}
45
- steps :
46
- - name : Checkout code
47
- uses : actions/checkout@v4
48
- - name : Setup dotnet SDK v6.0
49
- uses : actions/setup-dotnet@v4
50
- with :
51
- dotnet-version : ${{ matrix.dotnet-version }}
52
- - name : Install Pulumi CLI
53
- uses : pulumi/actions@v5
54
- with :
55
- pulumi-version : latest
56
- - name : Build Pulumi SDK
57
- run : dotnet run build-sdk
58
- - name : Workspace clean (are xml doc file updates committed?)
59
- uses : pulumi/git-status-check-action@v1
60
- - name : Test Pulumi SDK
61
- run : dotnet run test-sdk coverage
62
- - name : Test Pulumi Automation SDK
63
- run : dotnet run test-automation-sdk coverage
64
- - name : Upload coverage data
65
- uses : codecov/codecov-action@v4
66
- with :
67
- directory : coverage
68
- files : " *"
69
- fail_ci_if_error : false
70
- verbose : true
71
- token : ${{ secrets.CODECOV_TOKEN }}
72
- integration-tests :
73
- strategy :
74
- fail-fast : false
75
- matrix :
76
- os : [ubuntu-latest, windows-latest, macos-13]
77
- dotnet-version : [6.0.x, 8.0.x]
78
- runs-on : ${{ matrix.os }}
79
- steps :
80
- - name : Set TARGET_FRAMEWORK
81
- shell : bash
82
- run : |
83
- if [[ "${{ matrix.dotnet-version }}" == "6.0.x" ]]; then
84
- echo "TARGET_FRAMEWORK=net6.0" >> $GITHUB_ENV
85
- elif [[ "${{ matrix.dotnet-version }}" == "8.0.x" ]]; then
86
- echo "TARGET_FRAMEWORK=net8.0" >> $GITHUB_ENV
87
- elif [[ "${{ matrix.dotnet-version }}" == "9.0.x" ]]; then
88
- echo "TARGET_FRAMEWORK=net9.0" >> $GITHUB_ENV
89
- else
90
- echo "Unexpected dotnet-version: ${{ matrix.dotnet-version }}"
91
- exit 1
92
- fi
93
- - name : Checkout code
94
- uses : actions/checkout@v4
95
- - name : Setup dotnet SDK v6.0
96
- uses : actions/setup-dotnet@v4
97
- with :
98
- dotnet-version : ${{ matrix.dotnet-version }}
99
- - name : Set up Go 1.22.x
100
- uses : actions/setup-go@v5
101
- with :
102
- go-version : 1.22.x
103
- - name : Install Pulumi CLI
104
- uses : pulumi/actions@v5
105
- with :
106
- pulumi-version : latest
107
- - name : Install gotestsum
108
-
109
- env :
110
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
111
- with :
112
- repo : gotestyourself/gotestsum
113
- tag : v1.8.1
114
- cache : enable
115
- - name : Install netcoredbg (Linux)
116
- if : matrix.os == 'ubuntu-latest'
117
- run : |
118
- curl -sSL https://github.com/Samsung/netcoredbg/releases/download/3.1.1-1042/netcoredbg-linux-amd64.tar.gz -o netcoredbg.tar.gz
119
- tar xzf netcoredbg.tar.gz
120
- sudo cp netcoredbg/* /usr/bin/
121
- -
uses :
MinoruSekine/[email protected]
122
- if : matrix.os == 'windows-latest'
123
- with :
124
- buckets : extras
125
- apps : doxygen plantuml
126
- - name : Install netcoredbg (Windows)
127
- if : matrix.os == 'windows-latest'
128
- run : |
129
- scoop install netcoredbg
130
- - name : Install netcoredbg (MacOS)
131
- if : matrix.os == 'macos-13'
132
- id : netcoredbg
133
- run : |
134
- curl -sSL https://github.com/Samsung/netcoredbg/releases/download/3.1.1-1042/netcoredbg-osx-amd64.tar.gz -o netcoredbg.tar.gz
135
- tar xzf netcoredbg.tar.gz
136
- echo "netcoredbgpath=$(pwd)/netcoredbg/" >> ${GITHUB_OUTPUT}
137
- - name : Integration tests
138
- if : matrix.os == 'macos-13'
139
- run : PATH="${{ steps.netcoredbg.outputs.netcoredbgpath}}":"$PATH" make test_integration
140
- - name : Integration tests
141
- if : matrix.os != 'macos-13'
142
- run : make test_integration
17
+ ci :
18
+ name : CI
19
+ uses : ./.github/workflows/ci.yml
20
+ secrets : inherit
21
+ with :
22
+ ref : ${{ github.head_ref }}
143
23
144
24
info :
145
25
name : gather
@@ -171,28 +51,11 @@ jobs:
171
51
172
52
release-dev-sdk :
173
53
name : release-dev-sdk
174
- needs : [build, integration-tests , info]
54
+ needs : [ci , info]
175
55
uses : ./.github/workflows/release-sdk.yml
176
56
if : ${{ github.event_name == 'merge_group' }}
177
57
with :
178
58
ref : ${{ github.event.release.tag_name }}
179
59
version : ${{ needs.info.outputs.version }}
180
60
release-notes : ${{ github.event.release.body }}
181
- secrets : inherit
182
-
183
- check-pr :
184
- needs : ["build", "integration-tests", "format"]
185
- runs-on : ubuntu-latest
186
- if : always() # always report a status
187
- steps :
188
- - name : Build failed
189
- if : ${{ needs.build.result != 'success' }}
190
- run : exit 1
191
- - name : Integration tests failed
192
- if : ${{ needs.integration-tests.result != 'success' }}
193
- run : exit 1
194
- - name : Format failed
195
- if : ${{ needs.format.result != 'success' }}
196
- run : exit 1
197
- - name : CI succeeded
198
- run : exit 0
61
+ secrets : inherit
0 commit comments