Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General refactor: backend/frontend separation and API integration for ELF analysis #34

Merged
merged 12 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
backend/tests/snapshots/heavy_test_c/functions_list.snap filter=lfs diff=lfs merge=lfs -text
giusbianco marked this conversation as resolved.
Show resolved Hide resolved
13 changes: 0 additions & 13 deletions .github/dependabot.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/heavy-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: heavy-tests

on:
schedule:
- cron: '0 21 * * 2' # Every Tuesday at 21:00 UTC

jobs:
################################## BACKEND TESTS ##################################
giusbianco marked this conversation as resolved.
Show resolved Hide resolved

ffmpeg-heavy-test:
name: Heavy Test for ffmpeg
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview

- name: Run Backend Integration Test
run: cargo test --test heavy_test -- --nocapture --test-threads=1

giusbianco marked this conversation as resolved.
Show resolved Hide resolved
Loading
Loading