Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
18c3d8b
initial ios junk
Jun 13, 2022
cbdd54e
i hate apple
Jun 13, 2022
5cc6089
squash
Jun 13, 2022
4b54f72
Revert "squash"
Jun 13, 2022
76eeddc
squash
Jun 13, 2022
e56eef1
squash
Jun 14, 2022
0cad6e9
it actually start to build omg
Jun 14, 2022
1da239f
squash
Jun 14, 2022
2b9e2e7
remove submodule
Jun 14, 2022
17e5ed8
squash
Jun 14, 2022
5a7fa2a
tmp
Jun 14, 2022
e3aa9e8
OH MY FUCKING SWEET BABY JESUS SON OF THE VIRGIN MARY IT FUCKING COMP…
Jun 15, 2022
02d4f78
cleanups
Jun 15, 2022
a793057
add iphone to ci
Jun 15, 2022
e5496a1
all the stuff for the ci pipeline, probably
Jun 15, 2022
e343417
squashme
Jun 15, 2022
0c55630
squashme
Jun 15, 2022
aee7296
format
Jun 15, 2022
8d5ae38
WITH_ to USE_
Jun 15, 2022
9af52af
squashme
Jun 15, 2022
acf8a07
submodule
Jun 15, 2022
a770bd5
fix up cross.sh
Jun 15, 2022
075dc79
check libuv submodule
Jun 15, 2022
7ff9678
build ios first
Jun 15, 2022
239d0ec
only pack liblokinet-embedded.a in iphone ci pipeline
Jun 15, 2022
89b499d
use uv static build when using submodule
Jun 15, 2022
5051739
move logic out of ci into ios builder script
Jun 16, 2022
7c978cc
restructure build for iphone
Jun 16, 2022
e0b978e
fix typos
Jun 16, 2022
d00a60e
clean up static deps for cross targets
Jun 16, 2022
8b83137
fix up compiler flags and make shit smaller
Jul 6, 2022
65d3c0e
fall back to null vpn platform when we have no implementation for the…
majestrate Jun 22, 2022
8a905db
Updated the ios.sh to create fat libraries and generate a .xcframework
mpretty-cyro Jul 7, 2022
8585d53
Merge pull request #5 from mpretty-cyro/ios-ci-2022-06-13
Jul 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
only pack liblokinet-embedded.a in iphone ci pipeline
  • Loading branch information
jeff committed Jul 6, 2022
commit 239d0ecfb35cc648bee4b61195526b26af55c191
5 changes: 4 additions & 1 deletion contrib/ci/drone-static-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ elif [ -e build-docs ]; then
tar cJvf "$archive" "$base"
elif [ -e build/iphone/ ]; then
archive="$base.tar.xz"
cp -av build/iphone/ "$base"
mkdir -p "$base/sim"
mkdir -p "$base/device"
cp -av build/iphone/sim/llarp/liblokinet-embedded.a "$base/sim/liblokinet-embedded.a"
cp -av build/iphone/device/llarp/liblokinet-embedded.a "$base/device/liblokinet-embedded.a"
tar cJvf "$archive" "$base"
else
cp -av daemon/lokinet daemon/lokinet-vpn "$base"
Expand Down