File tree 4 files changed +60
-8
lines changed
4 files changed +60
-8
lines changed Original file line number Diff line number Diff line change 49
49
git describe --always --dirty
50
50
51
51
- name : Configure CMake
52
- run : cmake -B build -DCMAKE_BUILD_TYPE="Debug" -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
52
+ run : |
53
+ cmake -B build \
54
+ -DCMAKE_BUILD_TYPE="Debug" \
55
+ -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} \
56
+ -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
53
57
54
58
- name : Build
55
59
run : cmake --build build
92
96
run : echo "GIT_DESCRIBE=$(git describe --always --dirty)" >> $GITHUB_ENV
93
97
94
98
- name : Configure CMake
95
- run : cmake -B build -DCMAKE_BUILD_TYPE="RelWithDebInfo" -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=YES -DBUILD_DOCS=YES -DBUILD_EMV_TOOL=YES -DBUILD_EMV_VIEWER=YES -DCPACK_COMPONENTS_GROUPING=ALL_COMPONENTS_IN_ONE
99
+ run : |
100
+ cmake -B build \
101
+ -DCMAKE_BUILD_TYPE="RelWithDebInfo" \
102
+ -DCMAKE_INSTALL_PREFIX=/usr \
103
+ -DBUILD_SHARED_LIBS=YES \
104
+ -DBUILD_DOCS=YES \
105
+ -DBUILD_EMV_TOOL=YES \
106
+ -DBUILD_EMV_VIEWER=YES \
107
+ -DCPACK_COMPONENTS_GROUPING=ALL_COMPONENTS_IN_ONE
96
108
97
109
- name : Build
98
110
run : cmake --build build
Original file line number Diff line number Diff line change 62
62
submodules : recursive
63
63
64
64
- name : Configure CMake
65
- run : cmake -B build -DCMAKE_OSX_ARCHITECTURES="${{ matrix.osx_arch }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" -DBUILD_SHARED_LIBS=${{ matrix.shared_libs }} -DFETCH_ARGP=${{ matrix.fetch_deps }} -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
65
+ run : |
66
+ cmake -B build \
67
+ -DCMAKE_OSX_ARCHITECTURES="${{ matrix.osx_arch }}" \
68
+ -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" \
69
+ -DBUILD_SHARED_LIBS=${{ matrix.shared_libs }} \
70
+ -DFETCH_ARGP=${{ matrix.fetch_deps }} \
71
+ -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} \
72
+ -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
66
73
67
74
- name : Build
68
75
run : cmake --build build
@@ -94,7 +101,14 @@ jobs:
94
101
run : echo "GIT_DESCRIBE=$(git describe --always --dirty)" >> $GITHUB_ENV
95
102
96
103
- name : Configure CMake
97
- run : cmake -B build -DCMAKE_OSX_ARCHITECTURES="x86_64" -DCMAKE_BUILD_TYPE="RelWithDebInfo" -DFETCH_ARGP=YES -DBUILD_EMV_TOOL=YES -DBUILD_EMV_VIEWER=YES -DBUILD_MACOSX_BUNDLE=YES
104
+ run : |
105
+ cmake -B build \
106
+ -DCMAKE_OSX_ARCHITECTURES="x86_64" \
107
+ -DCMAKE_BUILD_TYPE="RelWithDebInfo" \
108
+ -DFETCH_ARGP=YES \
109
+ -DBUILD_EMV_TOOL=YES \
110
+ -DBUILD_EMV_VIEWER=YES \
111
+ -DBUILD_MACOSX_BUNDLE=YES
98
112
99
113
- name : Build
100
114
run : cmake --build build
Original file line number Diff line number Diff line change 47
47
- run : git describe --always --dirty
48
48
49
49
- name : Configure CMake
50
- run : cmake -B build -DCMAKE_BUILD_TYPE="Debug" -DISO8859_IMPL=${{ matrix.iso8859 }} -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
50
+ run : |
51
+ cmake -B build \
52
+ -DCMAKE_BUILD_TYPE="Debug" \
53
+ -DISO8859_IMPL=${{ matrix.iso8859 }} \
54
+ -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} \
55
+ -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
51
56
52
57
- name : Build
53
58
run : cmake --build build
87
92
# intended Ubuntu release. The ppa1 component indicates that this is not
88
93
# an official Ubuntu package. The release name component indicates that
89
94
# this is for the specific Ubuntu release that has that name.
90
- run : cmake -B build -DCMAKE_BUILD_TYPE="RelWithDebInfo" -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=YES -DBUILD_DOCS=YES -DBUILD_EMV_TOOL=YES -DBUILD_EMV_VIEWER=YES -DCPACK_COMPONENTS_GROUPING=ALL_COMPONENTS_IN_ONE -DCPACK_DEBIAN_PACKAGE_RELEASE="0ubuntu1~ppa1~${{ matrix.ubuntu_release_name }}1"
95
+ run : |
96
+ cmake -B build \
97
+ -DCMAKE_BUILD_TYPE="RelWithDebInfo" \
98
+ -DCMAKE_INSTALL_PREFIX=/usr \
99
+ -DBUILD_SHARED_LIBS=YES \
100
+ -DBUILD_DOCS=YES \
101
+ -DBUILD_EMV_TOOL=YES \
102
+ -DBUILD_EMV_VIEWER=YES \
103
+ -DCPACK_COMPONENTS_GROUPING=ALL_COMPONENTS_IN_ONE \
104
+ -DCPACK_DEBIAN_PACKAGE_RELEASE="0ubuntu1~ppa1~${{ matrix.ubuntu_release_name }}1"
91
105
92
106
- name : Build
93
107
run : cmake --build build
Original file line number Diff line number Diff line change 71
71
git describe --always --dirty
72
72
73
73
- name : Configure CMake
74
- run : cmake -G Ninja -B build -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" -DBUILD_SHARED_LIBS=${{ matrix.shared_libs }} -DFETCH_ARGP=YES -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
74
+ run : |
75
+ cmake -G Ninja -B build \
76
+ -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" \
77
+ -DBUILD_SHARED_LIBS=${{ matrix.shared_libs }} \
78
+ -DFETCH_ARGP=YES \
79
+ -DBUILD_EMV_TOOL=${{ matrix.build_emv_tool }} \
80
+ -DBUILD_EMV_VIEWER=${{ matrix.build_emv_viewer }}
75
81
76
82
- name : Build
77
83
run : cmake --build build
@@ -134,7 +140,13 @@ jobs:
134
140
echo "GIT_DESCRIBE=$(git describe --always --dirty)" >> $GITHUB_ENV
135
141
136
142
- name : Configure CMake
137
- run : cmake -G Ninja -B build -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" -DBUILD_SHARED_LIBS=YES -DFETCH_ARGP=YES -DBUILD_EMV_TOOL=YES -DBUILD_EMV_VIEWER=YES
143
+ run : |
144
+ cmake -G Ninja -B build \
145
+ -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" \
146
+ -DBUILD_SHARED_LIBS=YES \
147
+ -DFETCH_ARGP=YES \
148
+ -DBUILD_EMV_TOOL=YES \
149
+ -DBUILD_EMV_VIEWER=YES
138
150
# CMake will only accept Windows paths if they are environment variables, not CMake command line cache entries
139
151
env :
140
152
CMAKE_PREFIX_PATH : ${{ env.Qt6_DIR }}
You can’t perform that action at this time.
0 commit comments