File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 2020 # go version in our go.mod files.
2121 go-version : [1.22.x, 1.23.x]
2222 platform : [ubuntu-latest, macos-latest, windows-latest]
23+ feature-flags : ["DEFAULT", "PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW"]
2324 runs-on : ${{ matrix.platform }}
2425 steps :
2526 - name : Install pulumi
3435 go-version : ${{ matrix.go-version }}
3536 cache-dependency-path : |
3637 **/go.sum
38+ - name : export feature flags
39+ run : echo ${{ matrix.feature-flags }}=true >> $GITHUB_ENV
40+ if : ${{ matrix.platform != 'windows-latest' && matrix.feature-flags != 'DEFAULT' }}
41+ - name : export feature flags
42+ run : echo ${{ matrix.feature-flags }}=true >> $env:GITHUB_ENV
43+ if : ${{ matrix.platform == 'windows-latest' && matrix.feature-flags != 'DEFAULT' }}
3744 - name : Build
3845 run : make build
3946 - name : Build PF
You can’t perform that action at this time.
0 commit comments