File tree 3 files changed +17
-8
lines changed
3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,13 @@ jobs:
13
13
build-rpm :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - name : Build RPM
17
- uses : mmornati/docker-mock-rpmbuilder@master
18
- env :
19
- SPEC_FILE : " rpm/scitokens-cpp.spec"
20
- SOURCES : workspace
21
- MOCK_CONFIG : " epel-7-x86_64"
16
+ - uses : actions/checkout@v1
17
+ with :
18
+ submodules : recursive
19
+
20
+ # Custom rpm building from Derek to build RPM
21
+ - uses : djw8605/docker-mock-rpmbuilder@master
22
+ with :
23
+ spec-file : rpm/scitokens-cpp.spec
24
+ mock-config : epel-7-x86_64
22
25
Original file line number Diff line number Diff line change 23
23
submodules : recursive
24
24
- name : install deps
25
25
run : |
26
- sudo apt-get install libssl-dev sqlite3 libsqlite3-dev cmake libcurl4 libcurl4-openssl-dev uuid-dev
26
+ sudo apt update && sudo apt -get install libssl-dev sqlite3 libsqlite3-dev cmake libcurl4 libcurl4-openssl-dev uuid-dev
27
27
28
28
- name : Create Build Environment
29
29
# Some projects don't allow in-source building, so create a separate build directory
52
52
# Execute tests defined by the CMake configuration.
53
53
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
54
54
run : ctest -C $BUILD_TYPE
55
+
56
+
Original file line number Diff line number Diff line change 1
1
Name: scitokens-cpp
2
- Version: 0.3.5
2
+ Version: 0.4.0
3
3
Release: 1%{?dist }
4
4
Summary: C++ Implementation of the SciTokens Library
5
5
License: ASL 2.0
@@ -18,6 +18,7 @@ Source0: https://github.com/scitokens/scitokens-cpp/releases/download/v%{version
18
18
# by this package.
19
19
20
20
BuildRequires: gcc-c++
21
+ BuildRequires: make
21
22
BuildRequires: cmake
22
23
BuildRequires: sqlite-devel
23
24
BuildRequires: openssl-devel
@@ -76,6 +77,9 @@ do_build
76
77
%dir %{_includedir }/scitokens
77
78
78
79
%changelog
80
+ *
Fri Nov 08 2019 Derek Weitzel <[email protected] > -
0.4.0-1
81
+ - Add support for WLCG profile
82
+
79
83
*
Fri Nov 08 2019 Derek Weitzel <[email protected] > -
0.3.5-1
80
84
- Fix EC public key handling
81
85
You can’t perform that action at this time.
0 commit comments