File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04
12
12
steps :
13
13
- name : install-deps
14
14
uses : awalsh128/cache-apt-pkgs-action@latest
15
15
with :
16
- packages : binutils cmake doxygen g++ libcppunit-dev libgnutls28-dev libgsasl7 -dev libgtk-3-dev libssl-dev make pkg-config
16
+ packages : binutils cmake doxygen g++ libcppunit-dev libgnutls28-dev libgsasl -dev libgtk-3-dev libssl-dev make pkg-config
17
17
version : 1.2
18
18
- name : clone-vmime
19
19
uses : actions/checkout@v3
20
20
- name : buildall
21
21
run : |
22
- set -x
23
- lscpu -b --online --parse | grep -v '^#' | wc -l >/tmp/ncpus
24
- cmake . -DVMIME_SENDMAIL_PATH:STRING="/usr/sbin/sendmail" -DVMIME_HAVE_TLS_SUPPORT:BOOL=ON -DVMIME_BUILD_TESTS=ON -DVMIME_BUILD_SAMPLES=ON && make "-j$(cat /tmp/ncpus)" && sudo make install
22
+ set -ex
23
+ cmake . -DVMIME_SENDMAIL_PATH:STRING="/usr/sbin/sendmail" -DVMIME_HAVE_TLS_SUPPORT:BOOL=ON -DVMIME_BUILD_TESTS=ON -DVMIME_BUILD_SAMPLES=ON && make "-j$(nproc)" && sudo make install
25
24
make test
You can’t perform that action at this time.
0 commit comments