polls, voting, staking: Enhance voting consensus rules to allow for changeable magnitude weight factor and enhance CBR #3173
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: CI | |
on: [push, pull_request] | |
env: | |
EVENT_TYPE: ${{ github.event_name }} | |
COMMIT_COUNT: ${{ github.event.commits.length }} | |
CI_REPO_SLUG: ${{ github.repository }} | |
jobs: | |
test-linux: | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
include: | |
- name: ARM [GOAL install] [buster] | |
script-id: arm | |
- name: Win32 | |
script-id: win32 | |
- name: Win64 | |
script-id: win64 | |
- name: i386 Linux [GOAL install] [focal] | |
script-id: linux_i386 | |
- name: x86_64 Linux [GOAL install] [GUI] [focal] [no depends] | |
script-id: native | |
- name: x86_64 Linux [GOAL install] [GUI] [bionic] [no depends] | |
script-id: native_old | |
- name: x86_64 Linux [ASan] [LSan] [UBSan] [integer] [jammy] [no depends] | |
script-id: native_asan | |
# FIXME: depends is unable to compile Qt with clang. | |
# - name: x86_64 Linux [TSan] [GUI] [jammy] | |
# script-id: native_tsan | |
- name: macOS 10.14 [GOAL deploy] [GUI] [no tests] [noble] | |
script-id: mac | |
- name: arm64 macOS 10.14 [GOAL deploy] [GUI] [no tests] [noble] | |
script-id: mac_arm64_cross | |
env: | |
FILE_ENV: ./ci/test/00_setup_env_${{ matrix.script-id }}.sh | |
OS_NAME: linux | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: current time for cache | |
run: echo "TIMESTAMP=$(date +%s)" >> $GITHUB_ENV | |
- name: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./depends/built | |
./ci/scratch/.ccache | |
key: ${{ runner.os }}-${{ matrix.script-id }}-${{ env.TIMESTAMP }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.script-id }}- | |
- name: test | |
run: | | |
./ci/test_run_all.sh | |
test-macos: | |
name: macOS 12 native [GOAL install] [GUI] [no depends] | |
runs-on: macos-12 | |
env: | |
DANGER_RUN_CI_ON_HOST: true | |
CI_USE_APT_INSTALL: no | |
FILE_ENV: ./ci/test/00_setup_env_mac_host.sh | |
OS_NAME: macos | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: current time for cache | |
run: echo "TIMESTAMP=$(date +%s)" >> $GITHUB_ENV | |
- name: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./ci/scratch/.ccache | |
key: ${{ runner.os }}-${{ env.TIMESTAMP }} | |
restore-keys: | | |
${{ runner.os }}- | |
- name: install-packages | |
run: | | |
brew install autoconf automake boost miniupnpc qrencode ccache leveldb librsvg libtool libzip [email protected] pkg-config python qt@5 xquartz | |
- name: test | |
run: | | |
./ci/test_run_all.sh | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: lint | |
run: | | |
set -o errexit; source ./ci/lint/04_install.sh | |
set -o errexit; source ./ci/lint/05_before_script.sh | |
set -o errexit; source ./ci/lint/06_script.sh |