ares/.github/workflows/ares-shared.yml

77 lines
2.0 KiB
YAML
Raw Normal View History

2023-03-04 11:23:40 +03:00
on:
workflow_call:
env:
CARGO_TERM_COLOR: always
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
2023-03-04 11:23:40 +03:00
defaults:
run:
working-directory: rust/ares
jobs:
build:
2023-05-20 17:22:21 +03:00
runs-on: 'ubuntu-latest'
2023-03-04 11:23:40 +03:00
steps:
- uses: actions/checkout@v3
# Install nix, required by nix-shell-action
- uses: cachix/install-nix-action@v23
name: Install Nix
with:
extra_nix_config: "extra-experimental-features = nix-command flakes"
2023-05-20 21:50:25 +03:00
# Check formatting
2023-03-04 11:23:40 +03:00
- name: Format
run: |
nix develop --command bash -c "cargo fmt --check"
2023-03-04 11:23:40 +03:00
2023-09-25 20:08:49 +03:00
# Install third-party dependencies
#
- name: Install dependencies
run: |
# install apt packages
2023-09-25 20:08:49 +03:00
sudo apt-get install -y \
2023-11-20 18:57:47 +03:00
autoconf-archive \
2023-09-25 20:08:49 +03:00
libcrypto++-dev \
openssl \
cmake \
libsecp256k1-dev &&
# install libaes_siv
2023-09-25 20:08:49 +03:00
git clone https://github.com/dfoxfranke/libaes_siv.git &&
cd libaes_siv &&
cmake . &&
make &&
sudo make install
# install urcrypt
cd .. &&
git clone https://github.com/urbit/urcrypt.git &&
cd urcrypt &&
./autogen.sh &&
./configure --enable-shared &&
make &&
sudo make install
2023-05-20 21:47:04 +03:00
# See clippy linter docs: https://github.com/rust-lang/rust-clippy
#
2023-05-20 21:50:25 +03:00
# First linter is set to fail for all warnings, then ignored warnings are
# explicitly listed
2023-05-20 21:47:04 +03:00
#
# XX TODO make a script with all the flags for the linter
2023-03-14 18:37:12 +03:00
- name: Lint
2023-05-20 21:47:04 +03:00
run: |
nix develop --command bash -c "cargo clippy --all-targets --no-deps -- -D warnings -A clippy::missing_safety_doc"
2023-03-14 18:37:12 +03:00
# Build Ares
2023-03-04 11:23:40 +03:00
- name: Build
run: |
nix develop --command bash -c "cargo build --release --verbose --features check_all"
# Run tests
- name: Test
run: |
nix develop --command bash -c "cargo test --verbose -- --test-threads=1"
2023-03-04 11:23:40 +03:00