Skip to content

imap.c: Optimize CREATE/DELETE/RENAME operations. #36

imap.c: Optimize CREATE/DELETE/RENAME operations.

imap.c: Optimize CREATE/DELETE/RENAME operations. #36

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ubuntu-latest:
runs-on: ubuntu-24.04
name: Ubuntu 24.04
steps:
- name: Checkout
uses: actions/checkout@v4
# Runs a set of commands using the runners shell
- name: Start build
run: |
echo Beginning build
pwd
ls -la
sudo apt-get update
sudo apt-get install -y git wget automake pkg-config libtool m4 build-essential libncurses-dev
cd ..
git clone https://github.com/InterLinked1/lbbs.git
cd lbbs
sudo scripts/libetpan.sh
cd ../evergreen
make
sudo make install
debian-stable:
runs-on: ubuntu-latest
name: Debian 12
container: debian:12
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Start build
run: |
apt-get update
apt-get install -y git wget automake pkg-config libtool m4 build-essential libncurses-dev
cd ..
git clone https://github.com/InterLinked1/lbbs.git
cd lbbs
scripts/libetpan.sh
cd ../evergreen
make
make install
debian-11:
runs-on: ubuntu-latest
name: Debian 11
container: debian:11
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Start build
run: |
apt-get update
apt-get install -y git wget automake pkg-config libtool m4 build-essential libncurses-dev
cd ..
git clone https://github.com/InterLinked1/lbbs.git
cd lbbs
scripts/libetpan.sh
cd ../evergreen
make
make install
debian-10:
runs-on: ubuntu-latest
name: Debian 10
container: debian:10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Start build
run: |
apt-get update
apt-get install -y git wget automake pkg-config libtool m4 build-essential libncurses-dev
cd ..
git clone https://github.com/InterLinked1/lbbs.git
cd lbbs
scripts/libetpan.sh
cd ../evergreen
make
make install