From 4723715c2eda992c7ece44cfe2bc4a61abdfd077 Mon Sep 17 00:00:00 2001 From: Spirillen <44526987+spirillen@users.noreply.github.com> Date: Sat, 18 Jan 2025 20:02:42 +0100 Subject: [PATCH] Testing rust, c++ vs python3.12 BUILD Bob Build (6) --- .github/workflows/compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 22712e802e2..ca289719134 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -28,11 +28,11 @@ jobs: - name: Build Rust script run: | - rustc -C opt-level=3 tools/sort_lists.rs -o tools/sort_lists_rust + rustc -C opt-level=3 tools/sort_lists.rs -o tools/sort_lists.rs - name: Build C++ script run: | - g++-10 -std=c++20 -O3 tools/sort_records.cpp -o tools/sort_records_cpp + g++-10 -std=c++20 -O3 tools/sort_records.cpp -o tools/sort_records.cpp - name: Upload Rust binary uses: actions/upload-artifact@v3