Skip to content

Commit ea9a0a6

Browse files
committed
Add daily cron job to test dotnet
1 parent 2a5ef7f commit ea9a0a6

File tree

3 files changed

+193
-145
lines changed

3 files changed

+193
-145
lines changed

.github/workflows/ci.yml

+172
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
name: Build and test
2+
3+
4+
on:
5+
workflow_call:
6+
inputs:
7+
ref:
8+
required: true
9+
description: "GitHub ref to use"
10+
type: string
11+
secrets:
12+
PULUMI_ACCESS_TOKEN_PRODUCTION:
13+
required: true
14+
description: "Pulumi access token, required to run tests against the service"
15+
GITHUB_TOKEN:
16+
required: true
17+
description: "GitHub token"
18+
CODECOV_TOKEN:
19+
required: true
20+
description: "Codecov token"
21+
22+
env:
23+
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN_PRODUCTION }}
24+
AWS_REGION: us-west-2
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
PULUMI_TEST_OWNER: "moolumi"
27+
28+
jobs:
29+
setup_matrix:
30+
runs-on: ubuntu-latest
31+
outputs:
32+
matrix: ${{ steps.set-matrix.outputs.matrix }}
33+
steps:
34+
- id: set-matrix
35+
run: |
36+
os="${{ contains(github.event.pull_request.labels.*.name, 'ci/test') && 'ubuntu-latest macos-latest windows-latest' || 'ubuntu-latest' }}"
37+
echo "matrix={\"os\": $(echo $os | jq -cR 'split(" ")')}" >> $GITHUB_OUTPUT
38+
39+
format:
40+
runs-on: ubuntu-latest
41+
steps:
42+
- name: Checkout code
43+
uses: actions/checkout@v4
44+
- name: Setup dotnet SDK v6.0
45+
uses: actions/setup-dotnet@v4
46+
- name: Format Pulumi SDK
47+
run: dotnet run format-sdk verify
48+
49+
build:
50+
needs: setup_matrix
51+
strategy:
52+
matrix:
53+
os: ${{ fromJson(needs.setup_matrix.outputs.matrix).os }}
54+
dotnet-version: [6.0.x, 8.0.x]
55+
56+
runs-on: ${{ matrix.os }}
57+
steps:
58+
- name: Checkout code
59+
uses: actions/checkout@v4
60+
- name: Setup dotnet SDK v6.0
61+
uses: actions/setup-dotnet@v4
62+
with:
63+
dotnet-version: ${{ matrix.dotnet-version }}
64+
- name: Install Pulumi CLI
65+
uses: pulumi/actions@v5
66+
with:
67+
pulumi-version: latest
68+
- name: Build Pulumi SDK
69+
run: dotnet run build-sdk
70+
- name: Workspace clean (are xml doc file updates committed?)
71+
uses: pulumi/git-status-check-action@v1
72+
- name: Test Pulumi SDK
73+
run: dotnet run test-sdk coverage
74+
- name: Test Pulumi Automation SDK
75+
run: dotnet run test-automation-sdk coverage
76+
- name: Upload coverage data
77+
uses: codecov/codecov-action@v4
78+
with:
79+
directory: coverage
80+
files: "*"
81+
fail_ci_if_error: false
82+
verbose: true
83+
token: ${{ secrets.CODECOV_TOKEN }}
84+
85+
integration-tests:
86+
strategy:
87+
fail-fast: false
88+
matrix:
89+
os: [ubuntu-latest, windows-latest, macos-13]
90+
dotnet-version: [6.0.x, 8.0.x]
91+
runs-on: ${{ matrix.os }}
92+
steps:
93+
- name: Set TARGET_FRAMEWORK
94+
shell: bash
95+
run: |
96+
if [[ "${{ matrix.dotnet-version }}" == "6.0.x" ]]; then
97+
echo "TARGET_FRAMEWORK=net6.0" >> $GITHUB_ENV
98+
elif [[ "${{ matrix.dotnet-version }}" == "8.0.x" ]]; then
99+
echo "TARGET_FRAMEWORK=net8.0" >> $GITHUB_ENV
100+
elif [[ "${{ matrix.dotnet-version }}" == "9.0.x" ]]; then
101+
echo "TARGET_FRAMEWORK=net9.0" >> $GITHUB_ENV
102+
else
103+
echo "Unexpected dotnet-version: ${{ matrix.dotnet-version }}"
104+
exit 1
105+
fi
106+
- name: Checkout code
107+
uses: actions/checkout@v4
108+
- name: Setup dotnet SDK v6.0
109+
uses: actions/setup-dotnet@v4
110+
with:
111+
dotnet-version: ${{ matrix.dotnet-version }}
112+
- name: Set up Go 1.22.x
113+
uses: actions/setup-go@v5
114+
with:
115+
go-version: 1.22.x
116+
- name: Install Pulumi CLI
117+
uses: pulumi/actions@v5
118+
with:
119+
pulumi-version: latest
120+
- name: Install gotestsum
121+
uses: jaxxstorm/[email protected]
122+
env:
123+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
124+
with:
125+
repo: gotestyourself/gotestsum
126+
tag: v1.8.1
127+
cache: enable
128+
- name: Install netcoredbg (Linux)
129+
if: matrix.os == 'ubuntu-latest'
130+
run: |
131+
curl -sSL https://github.com/Samsung/netcoredbg/releases/download/3.1.1-1042/netcoredbg-linux-amd64.tar.gz -o netcoredbg.tar.gz
132+
tar xzf netcoredbg.tar.gz
133+
sudo cp netcoredbg/* /usr/bin/
134+
- uses: MinoruSekine/[email protected]
135+
if: matrix.os == 'windows-latest'
136+
with:
137+
buckets: extras
138+
apps: doxygen plantuml
139+
- name: Install netcoredbg (Windows)
140+
if: matrix.os == 'windows-latest'
141+
run: |
142+
scoop install netcoredbg
143+
- name: Install netcoredbg (MacOS)
144+
if: matrix.os == 'macos-13'
145+
id: netcoredbg
146+
run: |
147+
curl -sSL https://github.com/Samsung/netcoredbg/releases/download/3.1.1-1042/netcoredbg-osx-amd64.tar.gz -o netcoredbg.tar.gz
148+
tar xzf netcoredbg.tar.gz
149+
echo "netcoredbgpath=$(pwd)/netcoredbg/" >> ${GITHUB_OUTPUT}
150+
- name: Integration tests
151+
if: matrix.os == 'macos-13'
152+
run: PATH="${{ steps.netcoredbg.outputs.netcoredbgpath}}":"$PATH" make test_integration
153+
- name: Integration tests
154+
if: matrix.os != 'macos-13'
155+
run: make test_integration
156+
157+
check-pr:
158+
needs: ["build", "integration-tests", "format"]
159+
runs-on: ubuntu-latest
160+
if: always() # always report a status
161+
steps:
162+
- name: Build failed
163+
if: ${{ needs.build.result != 'success' }}
164+
run: exit 1
165+
- name: Integration tests failed
166+
if: ${{ needs.integration-tests.result != 'success' }}
167+
run: exit 1
168+
- name: Format failed
169+
if: ${{ needs.format.result != 'success' }}
170+
run: exit 1
171+
- name: CI succeeded
172+
run: exit 0

.github/workflows/cron.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Daily cron testing
2+
3+
on:
4+
schedule:
5+
- cron: "27 5 * * *"
6+
7+
jobs:
8+
ci:
9+
name: CI
10+
uses: ./.github/workflows/ci.yml
11+
secrets: inherit
12+
with:
13+
ref: ${{ github.head_ref }}

.github/workflows/pr.yml

+8-145
Original file line numberDiff line numberDiff line change
@@ -14,132 +14,12 @@ env:
1414
PULUMI_TEST_OWNER: "moolumi"
1515

1616
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-
uses: jaxxstorm/[email protected]
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 }}
14323

14424
info:
14525
name: gather
@@ -171,28 +51,11 @@ jobs:
17151
17252
release-dev-sdk:
17353
name: release-dev-sdk
174-
needs: [build, integration-tests, info]
54+
needs: [ci, info]
17555
uses: ./.github/workflows/release-sdk.yml
17656
if: ${{ github.event_name == 'merge_group' }}
17757
with:
17858
ref: ${{ github.event.release.tag_name }}
17959
version: ${{ needs.info.outputs.version }}
18060
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

Comments
 (0)