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
|
- name: dist
|
||||||
run: make dist
|
run: make dist
|
||||||
- name: extract
|
- name: extract
|
||||||
run: tar -xzf libkernaux-0.3.0.tar.gz
|
run: tar -xzf "libkernaux-$(cat VERSION).tar.gz"
|
||||||
- working-directory: libkernaux-0.3.0
|
- name: configure
|
||||||
name: configure
|
run: cd "libkernaux-$(cat VERSION)" && ./configure --enable-tests --enable-tests-python
|
||||||
run: ./configure --enable-tests --enable-tests-python
|
- name: make
|
||||||
- working-directory: libkernaux-0.3.0
|
run: cd "libkernaux-$(cat VERSION)" && make
|
||||||
name: make
|
- name: check
|
||||||
run: make
|
run: cd "libkernaux-$(cat VERSION)" && make check || (./test-suite-log && false)
|
||||||
- working-directory: libkernaux-0.3.0
|
- name: install
|
||||||
name: check
|
run: cd "libkernaux-$(cat VERSION)" && sudo make install
|
||||||
run: make check || (./test-suite-log && false)
|
|
||||||
- working-directory: libkernaux-0.3.0
|
|
||||||
name: install
|
|
||||||
run: sudo make install
|
|
||||||
|
|
||||||
cppcheck:
|
cppcheck:
|
||||||
runs-on: ubuntu-latest
|
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],
|
AC_INIT([libkernaux],
|
||||||
[0.3.0],
|
m4_normalize(m4_include([VERSION])),
|
||||||
[https://github.com/tailix/libkernaux/issues],
|
[https://github.com/tailix/libkernaux/issues],
|
||||||
[libkernaux],
|
[libkernaux],
|
||||||
[https://github.com/tailix/libkernaux])
|
[https://github.com/tailix/libkernaux])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue