From 472e9810ed7c977bd0d7d9f1d400a57c08d6cab9 Mon Sep 17 00:00:00 2001 From: slhmy Date: Sat, 30 Dec 2023 10:55:02 +0800 Subject: [PATCH] Fix CI --- .github/workflows/rust_build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/rust_build.yml b/.github/workflows/rust_build.yml index 1ebf2bd..ca04159 100644 --- a/.github/workflows/rust_build.yml +++ b/.github/workflows/rust_build.yml @@ -15,8 +15,6 @@ jobs: steps: - uses: actions/checkout@v3 - with: - submodules: recursive - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y libseccomp-dev protobuf-compiler gcc-11 g++-11 - name: Setup gcc/g++ 11 @@ -26,7 +24,7 @@ jobs: - name: Check ENV run: echo $(rustup --version && g++ -v) - name: Build test dist - run: cd test-collection && ./build.sh && cd .. + run: cd judge-core/tests/data/built-in-programs && ./build.sh && cd ../../../../ - name: Run tests # Currently use --test-threads=1 to avoid log mess # Should only be used in judge-core later