From a6eafc10620c7a52f7a23aed202fc2e877a5e0fc Mon Sep 17 00:00:00 2001 From: Vhyrro Date: Thu, 23 Nov 2023 21:05:07 +0100 Subject: [PATCH] fix(ci): allow 1 runner at a time to prevent different versions of the same git repo --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8cdb4d95..3d057e240 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,11 +7,13 @@ jobs: runs-on: ${{ matrix.os.host }} strategy: matrix: + max-parallel: 1 os: - host: ubuntu-20.04 - host: windows-2019 - host: macos-11 steps: + - uses: actions/checkout@v4 - name: Install C/C++ Compiler uses: rlalik/setup-cpp-compiler@master with: @@ -38,10 +40,6 @@ jobs: # run: | # luarocks --local --lua-version=5.1 install toml-edit # luarocks pack toml-edit - - uses: actions/checkout@v4 - with: - ref: "main" - clean: false - name: Regenerate Manifests and HTML run: luarocks-admin make-manifest --lua-version=5.1 . - uses: stefanzweifel/git-auto-commit-action@v5