
All checks were successful
GBCI / build (push) Successful in 7m54s
- Implemented ALM container setup with Forgejo installation and systemd service configuration. - Created Bot container setup with necessary dependencies and Node.js application installation. - Developed Desktop container setup with XRDP and Brave browser installation. - Established Directory container setup with Zitadel installation and service configuration. - Added Doc Editor container setup for Collabora Online integration. - Implemented Drive container setup with MinIO installation and service configuration. - Created Email container setup with Stalwart Mail installation and service configuration. - Developed Meeting container setup with LiveKit and TURN server configuration. - Added Proxy container setup with Caddy installation and service configuration. - Implemented System container setup for general bots with service configuration. - Created Table Editor container setup with NocoDB installation and service configuration. - Developed Tables container setup with PostgreSQL installation and configuration. - Added Webmail container setup with Roundcube installation and service configuration. - Included prompt guidelines for container setup scripts.
35 lines
No EOL
764 B
YAML
35 lines
No EOL
764 B
YAML
name: GBCI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: gbo
|
|
|
|
steps:
|
|
- name: Disable SSL verification (temporary)
|
|
run: git config --global http.sslVerify false
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Rust
|
|
uses: msrd0/rust-toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Run build
|
|
run: cargo build --locked
|
|
|
|
- name: Deploy binary and restart
|
|
run: |
|
|
lxc exec bot:pragmatismo-system -- systemctl stop system
|
|
|
|
sudo cp ./target/debug/gbserver /opt/gbo/bin/system
|
|
sudo chmod +x /opt/gbo/bin/system/gbserver
|
|
|
|
lxc exec bot:pragmatismo-system -- systemctl start system
|
|
|