Delete RETARGET_TOLERANCE_UPPER_BOUND #198
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: "Mainnet Tests" | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Set up Erlang environment | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: "24.3" | |
rebar3-version: "3.20.0" | |
- name: Install CMake and g++ | |
run: | | |
sudo apt-get update | |
sudo apt-get install cmake g++ | |
- name: rebar3 mainnet | |
run: | | |
./rebar3 as mainnet tar | |
- name: Running Test Script | |
run: | | |
./bin/test |