File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,15 @@ packages:
10
10
- libz-dev
11
11
- llvm-dev # for cctools
12
12
- uuid-dev # # for cctools
13
+ - libblocksruntime-dev # for cctools
13
14
- libplist-utils # for gogio
14
15
sources :
15
16
- https://git.sr.ht/~eliasnaur/gio-cmd
16
17
- https://git.sr.ht/~eliasnaur/applesdks
17
18
- https://git.sr.ht/~eliasnaur/giouiorg
18
19
- https://github.com/tpoechtrager/cctools-port.git
19
20
- https://github.com/tpoechtrager/apple-libtapi.git
21
+ - https://github.com/tpoechtrager/apple-libdispatch
20
22
- https://github.com/mackyle/xar.git
21
23
environment :
22
24
APPLE_TOOLCHAIN_ROOT : /home/build/appletools
@@ -42,6 +44,11 @@ tasks:
42
44
- install_appletoolchain : |
43
45
cd giouiorg
44
46
go build -o $APPLE_TOOLCHAIN_ROOT/tools ./cmd/appletoolchain
47
+ - build_libdispatch : |
48
+ cd apple-libdispatch
49
+ cmake -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_INSTALL_PREFIX=$APPLE_TOOLCHAIN_ROOT/libdispatch .
50
+ ninja
51
+ ninja install
45
52
- build_xar : |
46
53
cd xar/xar
47
54
ac_cv_lib_crypto_OpenSSL_add_all_ciphers=yes CC=clang ./autogen.sh --prefix=/usr
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: Unlicense OR MIT
2
- image : debian/bookworm
2
+ image : debian/testing
3
3
packages :
4
4
- curl
5
5
- pkg-config
56
56
# mirror to github
57
57
ssh-keyscan github.com > "$HOME"/.ssh/known_hosts && cd gio-cmd && git push --mirror "$github_mirror" || echo "failed mirroring"
58
58
- install_chrome : |
59
- curl -s https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
60
- sudo sh -c 'echo "deb [arch=amd64] https://dl-ssl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
59
+ sudo curl -o /etc/apt/keyrings/google.pub - s https://dl.google.com/linux/linux_signing_key.pub
60
+ sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.pub ] https://dl-ssl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
61
61
sudo apt-get -qq update
62
62
sudo apt-get -qq install -y google-chrome-stable
63
63
- test : |
You can’t perform that action at this time.
0 commit comments