From 554653022fece8004b32fc12e3e3314625930d75 Mon Sep 17 00:00:00 2001 From: Spencer Wilson Date: Mon, 12 Feb 2024 15:59:30 -0500 Subject: [PATCH] Minor CI improvements --- .github/workflows/linux.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index ff6f7ba311..66d5afa53d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Ensure code conventions are upheld run: python3 -m pytest --verbose tests/test_code_conventions.py - name: Check that doxygen can parse the documentation @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Verify copy_from_upstream state run: | git config --global user.name "ciuser" && \ @@ -46,7 +46,7 @@ jobs: SIG_NAME: dilithium_3 steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Configure run: | mkdir build && \ @@ -97,7 +97,7 @@ jobs: image: ${{ matrix.container }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Configure run: mkdir build && cd build && cmake -GNinja ${{ matrix.CMAKE_ARGS }} .. && cmake -LA .. - name: Build @@ -118,7 +118,7 @@ jobs: path: build/*.deb linux_arm_emulated: - needs: [stylecheck, buildcheck] + needs: [stylecheck, upstreamcheck, buildcheck] runs-on: ubuntu-latest strategy: fail-fast: false @@ -134,7 +134,7 @@ jobs: # CMAKE_ARGS: -DOQS_ENABLE_SIG_SPHINCS=OFF -DOQS_USE_OPENSSL=OFF -DOQS_OPT_TARGET=generic steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install the emulation handlers run: docker run --rm --privileged multiarch/qemu-user-static:register --reset - name: Build in an x86_64 container @@ -176,7 +176,7 @@ jobs: - name: Install MINGW run: apt-get update && apt-get install gcc-mingw-w64 - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Configure run: mkdir build && cd build && cmake -GNinja ${{ matrix.CMAKE_ARGS }} .. && cmake -LA .. - name: Build