23 lines
681 B
YAML
Raw Normal View History

2024-11-28 17:39:34 +00:00
name: isspam build
run-name: isspam build and memory check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: apt update
2024-11-30 20:10:24 +00:00
- run: apt install build-essential valgrind make curl -y
2024-11-30 20:25:18 +00:00
- run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain nightly -y
2024-11-28 17:39:34 +00:00
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
2024-12-02 14:10:18 +00:00
- run: make build
- run: make run
2024-12-02 14:13:03 +00:00
- run: source $HOME/.cargo/env && make build_risspam
2024-12-02 14:10:18 +00:00
- run: make run_risspam
- run: make benchmark
- run: make publish