File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 99 concurrency :
1010 group : ${{ github.ref }}
1111 cancel-in-progress : true
12- runs-on : macos-12
12+ runs-on : macos-15
1313
1414 steps :
1515 - name : Checkout
3030 - name : Setup Xcode
3131 uses :
maxim-lobanov/[email protected] 3232 with :
33- xcode-version : 14 .2
33+ xcode-version : 16 .2
3434
3535 - name : Build
3636 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
23SKIP_SIM ?= false
34TARGET ="minimuxer"
45
@@ -40,15 +41,16 @@ copy:
4041 @echo " SIDESTORE_REPO: $( SIDESTORE_REPO) "
4142
4243 @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"
4546
4647 @echo "copying generated"
47- @cp generated/* "$(SIDESTORE_REPO)/Dependencies /minimuxer"
48+ @cp generated/* "$(SIDESTORE_REPO)/SideStore /minimuxer"
4849
49- @touch "$(SIDESTORE_REPO)/Dependencies /.skip-prebuilt-fetch-minimuxer"
50+ @touch "$(SIDESTORE_REPO)/SideStore /.skip-prebuilt-fetch-minimuxer"
5051
51- build : compile copy
52+ # build: compile copy
53+ build : compile
5254
5355clean :
5456 @echo " clean"
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ pub static STARTED: AtomicBool = AtomicBool::new(false);
258258pub static STARTED : AtomicBool = AtomicBool :: new ( true ) ; // minimuxer won't start in tests
259259
260260/// Starts the muxer and heartbeat client
261- /// # Arguments\
261+ /// # Arguments
262262/// Pairing file contents as a string and log path as a string
263263pub fn start ( pairing_file : String , log_path : String ) -> crate :: Res < ( ) > {
264264 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