Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Warchant committed Apr 13, 2020
1 parent c9d0d23 commit 80de3b5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Docker Push
uses: warchant/Publish-Docker-Github-Action@3
with:
name: veriblock/vbtc:cpp
name: veriblock/vbtc
dockerfile: Dockerfile
username: ${{ secrets.PUBLIC_DOCKERHUB_USERNAME }}
password: ${{ secrets.PUBLIC_DOCKERHUB_PASSWORD }}
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,23 @@ jobs:
env:
CC: gcc
CXX: g++
ALTINTEGRATION_VERSION: eb8d5128a8df6ee7eb96cec042f1c78ed71dc722
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: install alt-integration-cpp
run: |
(
cd /opt;
wget https://github.com/VeriBlock/alt-integration-cpp/archive/${ALTINTEGRATION_VERSION}.tar.gz;
tar -xf ${ALTINTEGRATION_VERSION}.tar.gz;
cd alt-integration-cpp-${ALTINTEGRATION_VERSION};
mkdir build;
cd build;
cmake .. -DCMAKE_BUILD_TYPE=Release -DTESTING=OFF;
make -j2 install
)
- name: autogen
run: ./autogen.sh
- name: configure
Expand All @@ -30,6 +43,7 @@ jobs:
--enable-lcov
--enable-lcov-branch-coverage
--disable-bench
--disable-tests

- name: make
run: make -j2
Expand Down

0 comments on commit 80de3b5

Please sign in to comment.