All checks were successful
BotServer CI / build (push) Successful in 18m20s
71 lines
2.6 KiB
YAML
71 lines
2.6 KiB
YAML
name: BotServer CI
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
CARGO_BUILD_JOBS: 8
|
|
CARGO_NET_RETRY: 10
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: gbo
|
|
|
|
steps:
|
|
- name: Disable SSL verification
|
|
run: git config --global http.sslVerify false
|
|
|
|
- name: Setup Workspace
|
|
run: |
|
|
git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/gb.git workspace
|
|
cd workspace
|
|
git submodule update --init --depth 1 botlib
|
|
git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/BotServer.git botserver
|
|
sed -i '/"botapp",/d' Cargo.toml
|
|
sed -i '/"botdevice",/d' Cargo.toml
|
|
sed -i '/"bottest",/d' Cargo.toml
|
|
sed -i '/"botui",/d' Cargo.toml
|
|
sed -i '/"botbook",/d' Cargo.toml
|
|
sed -i '/"botmodels",/d' Cargo.toml
|
|
sed -i '/"botplugin",/d' Cargo.toml
|
|
sed -i '/"bottemplates",/d' Cargo.toml
|
|
|
|
- name: Install system dependencies
|
|
run: |
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -y libpq-dev libssl-dev liblzma-dev pkg-config
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
|
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install sccache
|
|
run: |
|
|
wget -q https://github.com/mozilla/sccache/releases/download/v0.8.2/sccache-v0.8.2-x86_64-unknown-linux-musl.tar.gz
|
|
tar xzf sccache-v0.8.2-x86_64-unknown-linux-musl.tar.gz
|
|
mv sccache-v0.8.2-x86_64-unknown-linux-musl/sccache $HOME/.cargo/bin/sccache
|
|
chmod +x $HOME/.cargo/bin/sccache
|
|
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
|
|
$HOME/.cargo/bin/sccache --start-server || true
|
|
|
|
- name: Build BotServer
|
|
working-directory: workspace
|
|
run: |
|
|
cargo build -p botserver -j 8 2>&1 | tee /tmp/build.log
|
|
ls -lh target/debug/botserver
|
|
sccache --show-stats || true
|
|
|
|
- name: Save build log
|
|
if: always()
|
|
run: sudo cp /tmp/build.log /tmp/botserver-$(date +%Y%m%d-%H%M%S).log || true
|
|
|
|
- name: Deploy via SSH
|
|
working-directory: workspace
|
|
run: |
|
|
ssh -o StrictHostKeyChecking=no pragmatismo-system "systemctl stop system.service || true"
|
|
scp -o StrictHostKeyChecking=no target/debug/botserver pragmatismo-system:/opt/gbo/bin/botserver
|
|
ssh -o StrictHostKeyChecking=no pragmatismo-system "chmod +x /opt/gbo/bin/botserver && systemctl start system.service"
|