Skip to content

Commit 19805f2

Browse files
committed
Add scripts for openai codex cloud
1 parent b49d863 commit 19805f2

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
git submodule update --init --recursive
4+
5+
./gen-debug.sh
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

0 commit comments

Comments
 (0)