File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 35
35
ARTIFACTORY_TOKEN : ${{ secrets.ARTIFACTORY_TOKEN }}
36
36
run : |
37
37
conan remote disable conancenter
38
- conan remote add swift https://artifactory.swift-project.org/artifactory/api/conan/conan
38
+ conan remote add swift https://artifactory.swift-project.org/artifactory/api/conan/conan-local
39
39
conan remote login swift "$ARTIFACTORY_USER" --password "$ARTIFACTORY_TOKEN"
40
- conan remote add swift_upload https://artifactory.swift-project.org/artifactory/api/conan/conan-local
41
- conan remote login swift_upload "$ARTIFACTORY_USER" --password "$ARTIFACTORY_TOKEN"
42
40
- name : Build libraries
43
41
shell : bash
44
42
run : |
48
46
if : github.ref == 'refs/heads/main'
49
47
shell : bash
50
48
run : |
51
- conan upload "*" -r swift_upload --confirm
49
+ conan upload "*" -r swift --confirm
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ def requirements(self):
12
12
self .requires ("libevent/2.1.12" )
13
13
if self .settings .os != "Linux" :
14
14
self .requires ("dbus/1.15.8" )
15
+ self .requires ("nlohmann_json/3.11.3" )
15
16
16
17
def configure (self ):
17
18
self .options ["libevent" ].with_openssl = False
You can’t perform that action at this time.
0 commit comments