Commit da5c4f0 1 parent 4e51e7f commit da5c4f0 Copy full SHA for da5c4f0
File tree 3 files changed +11
-9
lines changed
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 9
9
concurrency :
10
10
group : ${{ github.ref }}
11
11
cancel-in-progress : true
12
- runs-on : macos-12
12
+ runs-on : macos-15
13
13
14
14
steps :
15
15
- name : Checkout
30
30
- name : Setup Xcode
31
31
uses :
maxim-lobanov/[email protected]
32
32
with :
33
- xcode-version : 14 .2
33
+ xcode-version : 16 .2
34
34
35
35
- name : Build
36
36
run : make zip
Original file line number Diff line number Diff line change 1
- SIDESTORE_REPO ?= ../SideStore
1
+ SIDESTORE_REPO ?= ../../../SideStore
2
+ # SIDESTORE_REPO ?= ../SideStore
2
3
SKIP_SIM ?= false
3
4
TARGET ="minimuxer"
4
5
@@ -40,15 +41,16 @@ copy:
40
41
@echo " SIDESTORE_REPO: $( SIDESTORE_REPO) "
41
42
42
43
@echo "copying libraries"
43
- @cp target/libminimuxer-ios.a "$(SIDESTORE_REPO)/Dependencies /minimuxer"
44
- @cp target/libminimuxer-sim.a "$(SIDESTORE_REPO)/Dependencies /minimuxer"
44
+ @cp target/libminimuxer-ios.a "$(SIDESTORE_REPO)/SideStore /minimuxer"
45
+ @cp target/libminimuxer-sim.a "$(SIDESTORE_REPO)/SideStore /minimuxer"
45
46
46
47
@echo "copying generated"
47
- @cp generated/* "$(SIDESTORE_REPO)/Dependencies /minimuxer"
48
+ @cp generated/* "$(SIDESTORE_REPO)/SideStore /minimuxer"
48
49
49
- @touch "$(SIDESTORE_REPO)/Dependencies /.skip-prebuilt-fetch-minimuxer"
50
+ @touch "$(SIDESTORE_REPO)/SideStore /.skip-prebuilt-fetch-minimuxer"
50
51
51
- build : compile copy
52
+ # build: compile copy
53
+ build : compile
52
54
53
55
clean :
54
56
@echo " clean"
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ pub static STARTED: AtomicBool = AtomicBool::new(false);
258
258
pub static STARTED : AtomicBool = AtomicBool :: new ( true ) ; // minimuxer won't start in tests
259
259
260
260
/// Starts the muxer and heartbeat client
261
- /// # Arguments\
261
+ /// # Arguments
262
262
/// Pairing file contents as a string and log path as a string
263
263
pub fn start ( pairing_file : String , log_path : String ) -> crate :: Res < ( ) > {
264
264
startWithLogger ( pairing_file, log_path, true ) // logging is enabled by default as before
You can’t perform that action at this time.
0 commit comments