[Binance] - Use another URL for Binance public withdrawal fees source #960
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Monitoring | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ubuntu-monitoring-build: | |
name: Build on Ubuntu with monitoring support | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
compiler: [g++-11] | |
buildmode: [Debug] | |
build-prometheus-from-source: [0, 1] | |
steps: | |
- name: Checkout repository code | |
uses: actions/checkout@v2 | |
- name: Prerequisites | |
run: | | |
sudo apt update && sudo apt install libcurl4-gnutls-dev ninja-build | |
- name: Install prometheus-cpp | |
run: | | |
git clone https://github.com/jupp0r/prometheus-cpp.git | |
cd prometheus-cpp | |
git submodule init | |
git submodule update | |
mkdir _build | |
cd _build | |
cmake .. -DBUILD_SHARED_LIBS=ON -DENABLE_PULL=OFF -DENABLE_PUSH=ON -DENABLE_COMPRESSION=OFF -DCMAKE_BUILD_TYPE=${{matrix.buildmode}} -DCMAKE_CXX_COMPILER=${{matrix.compiler}} -GNinja | |
ninja | |
ctest | |
sudo cmake --install . | |
if: matrix.build-prometheus-from-source == 0 | |
- name: Create Build Environment | |
run: cmake -E make_directory ${{github.workspace}}/build | |
- name: Configure CMake | |
working-directory: ${{github.workspace}}/build | |
shell: bash | |
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{matrix.buildmode}} -DCMAKE_CXX_COMPILER=${{matrix.compiler}} -DCCT_BUILD_PROMETHEUS_FROM_SRC=${{matrix.build-prometheus-from-source}} -GNinja | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
shell: bash | |
run: ninja | |
- name: Local Tests | |
working-directory: ${{github.workspace}}/build | |
shell: bash | |
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure --exclude-regex api_test | |
- name: Public API Tests # Tries several times to avoid random timeout errors not coming from coincenter | |
working-directory: ${{github.workspace}}/build | |
shell: bash | |
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure --tests-regex api_test --repeat until-pass:10 |