1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2026-08-15 11:00:07 -04:00

Add file "VERSION" (#51)

This commit is contained in:
Alex Kotov 2022-06-13 15:05:47 +03:00 committed by GitHub
parent 2ea79eb7f5
commit 3ba8eedcc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 14 deletions

View file

@ -62,19 +62,15 @@ jobs:
- name: dist
run: make dist
- name: extract
run: tar -xzf libkernaux-0.3.0.tar.gz
- working-directory: libkernaux-0.3.0
name: configure
run: ./configure --enable-tests --enable-tests-python
- working-directory: libkernaux-0.3.0
name: make
run: make
- working-directory: libkernaux-0.3.0
name: check
run: make check || (./test-suite-log && false)
- working-directory: libkernaux-0.3.0
name: install
run: sudo make install
run: tar -xzf "libkernaux-$(cat VERSION).tar.gz"
- name: configure
run: cd "libkernaux-$(cat VERSION)" && ./configure --enable-tests --enable-tests-python
- name: make
run: cd "libkernaux-$(cat VERSION)" && make
- name: check
run: cd "libkernaux-$(cat VERSION)" && make check || (./test-suite-log && false)
- name: install
run: cd "libkernaux-$(cat VERSION)" && sudo make install
cppcheck:
runs-on: ubuntu-latest

1
VERSION Normal file
View file

@ -0,0 +1 @@
0.3.0

View file

@ -12,7 +12,7 @@ LT_PREREQ([2.4.6])
#######################
AC_INIT([libkernaux],
[0.3.0],
m4_normalize(m4_include([VERSION])),
[https://github.com/tailix/libkernaux/issues],
[libkernaux],
[https://github.com/tailix/libkernaux])