@@ -61,19 +61,22 @@ jobs:
61
61
steps :
62
62
- name : Checkout SWMM Repo
63
63
uses : actions/checkout@v4
64
+ with :
65
+ repository : SWMM
64
66
65
- - name : Install OpenMP on MacOS
66
- if : ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }}
67
- run : |
68
- brew reinstall --build-from-source libomp
69
- brew link --force --overwrite libomp
70
-
71
67
- name : Checkout VCPKG
72
68
uses : actions/checkout@v4
73
69
with :
74
70
repository : microsoft/vcpkg
75
71
ref : 2025.02.14
76
72
path : vcpkg
73
+
74
+ - name : Install OpenMP on MacOS
75
+ if : ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }}
76
+ run : |
77
+ brew reinstall --build-from-source libomp
78
+ brew link --force --overwrite libomp
79
+
77
80
78
81
- name : Bootstrap VCPKG (Windows)
79
82
if : ${{ matrix.os == 'windows-latest' }}
@@ -121,10 +124,11 @@ jobs:
121
124
122
125
- name : Configure Binary Sources (Windows)
123
126
if : ${{ matrix.os == 'windows-latest' }}
127
+ working-directory : ${{ env.VCPKG_ROOT }}
124
128
run : |
125
- .$ (vcpkg fetch nuget) sources add -Name github -Source ${{ env.NUGET_FEED_URL }} -UserName ${{ env.NUGET_USER_NAME }} -Password ${{ env.NUGET_API_KEY }}
126
- .$ (vcpkg fetch nuget) setapikey ${{ env.NUGET_API_KEY }} -Source github
127
- .$ (vcpkg fetch nuget) sources
129
+ (vcpkg fetch nuget) sources add -Name github -Source ${{ env.NUGET_FEED_URL }} -UserName ${{ env.NUGET_USER_NAME }} -Password ${{ env.NUGET_API_KEY }}
130
+ (vcpkg fetch nuget) setapikey ${{ env.NUGET_API_KEY }} -Source github
131
+ (vcpkg fetch nuget) sources
128
132
129
133
- name : Configure Binary Sources (Unix like)
130
134
if : ${{ matrix.os != 'windows-latest' }}
0 commit comments