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:
parent
2ea79eb7f5
commit
3ba8eedcc3
3 changed files with 11 additions and 14 deletions
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
|
|
@ -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
1
VERSION
Normal file
|
|
@ -0,0 +1 @@
|
|||
0.3.0
|
||||
|
|
@ -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])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue