File tree Expand file tree Collapse file tree
agents/codex-cloud/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ git submodule update --init --recursive
4+
5+ ./gen-debug.sh
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ add-apt-repository -y universe
4+ apt-get update -y
5+
6+ apt-get install -y --no-install-recommends \
7+ ninja-build \
8+ doxygen \
9+ graphviz \
10+ libatomic1 \
11+ libicu-dev \
12+ libncurses6 \
13+ libtomcrypt1 \
14+ libtommath1
15+
16+ FIREBIRD_PACKAGE=Firebird-5.0.3.1683-0-linux-x64
17+ FIREBIRD_RELEASE_URL=https://github.com/FirebirdSQL/firebird/releases/download/v5.0.3/$FIREBIRD_PACKAGE .tar.gz
18+
19+ mkdir /tmp/firebird-installer
20+ curl -fSL " $FIREBIRD_RELEASE_URL " -o /tmp/firebird-installer/$FIREBIRD_PACKAGE .tar.gz
21+ tar xzf /tmp/firebird-installer/$FIREBIRD_PACKAGE .tar.gz -C /tmp
22+ tar xzf /tmp/firebird-installer/$FIREBIRD_PACKAGE /buildroot.tar.gz -C
23+ rm -rf /tmp/firebird-installer
24+
25+ cat << 'EOF ' >> ~/.bashrc
26+ export FIREBIRD=/opt/firebird
27+ export LD_LIBRARY_PATH=$FIREBIRD/lib:$LD_LIBRARY_PATH
28+ export PATH=$FIREBIRD/bin:$PATH
29+ EOF
30+
31+ git submodule update --init --recursive
32+
33+ ./gen-debug.sh
You can’t perform that action at this time.
0 commit comments