Skip to content

Commit a8c684b

Browse files
author
Gennady Pospelov
authored
Merge pull request #170 from gpospelov/PreparingRelease
Preparing release
2 parents 8cd3639 + 45e7da0 commit a8c684b

File tree

80 files changed

+217
-258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+217
-258
lines changed

.appveyor.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/linux-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,16 @@ jobs:
5050
mkdir build && cd build
5151
cmake -DCMAKE_C_COMPILER_LAUNCHER=ccache \
5252
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache ../
53+
make package_source
5354
make -j4
5455
56+
- name: Upload tarball
57+
uses: actions/upload-artifact@v2
58+
if: success()
59+
with:
60+
name: qt-mvvm
61+
path: ./build/qt-mvvm-*.tar.gz
62+
5563
- name: ctest
5664
env:
5765
QT_QPA_PLATFORM: offscreen

.tokeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
thirdparty

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.travis/linux/build.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

.travis/linux/install.sh

Lines changed: 0 additions & 14 deletions
This file was deleted.

.travis/osx/build.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

.travis/osx/install.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![Windows](https://github.com/gpospelov/qt-mvvm/workflows/Windows/badge.svg?branch=master)](https://github.com/gpospelov/qt-mvvm/actions?query=workflow%3AWindows)
55
[![Mac OS](https://github.com/gpospelov/qt-mvvm/workflows/MacOS/badge.svg?branch=master)](https://github.com/gpospelov/qt-mvvm/actions?query=workflow%3AMacOS)
66
![version](https://img.shields.io/badge/version-0.1.0-blue)
7+
![](https://tokei.rs/b1/github/gpospelov/qt-mvvm/)
78

89
## Overview
910

@@ -29,7 +30,7 @@ Main features of the framework are:
2930
+ CMake 3.14
3031
+ Qt 5.12
3132

32-
## Installation instruction
33+
## Installation instructions
3334

3435
```
3536
git clone --recurse-submodules https://github.com/gpospelov/qt-mvvm.git

cmake/modules/CodeTools.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
include(ClangFormat)
33

44
# List of targets for project code beautification.
5-
set(BEAUTIFICATION_TARGETS mvvm_model mvvm_viewmodel testmodel testviewmodel)
5+
set(BEAUTIFICATION_TARGETS mvvm_model mvvm_viewmodel mvvm_view testmodel testviewmodel testview)
66

77
# Defines new target for 'clangformat' to beautify whole project.
88
# Use 'make clangformat' or 'cmake --build . --target clangformat' to beautify the code.

0 commit comments

Comments
 (0)