From 8c5c4d0954f87ae8c65c45e9a80e15a1d3f8ba49 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Fri, 11 Feb 2022 23:30:11 -0700 Subject: [PATCH] gpu-dawn: CI: cleanup git submodules in M1 runner Signed-off-by: Stephen Gutekanst --- .github/workflows/m1_ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/m1_ci.yml b/.github/workflows/m1_ci.yml index 044a23bc2..513cb1e06 100644 --- a/.github/workflows/m1_ci.yml +++ b/.github/workflows/m1_ci.yml @@ -14,11 +14,7 @@ jobs: - name: Clean repository submodules # See https://github.com/actions/checkout/issues/385 run: | - git submodule deinit . - git submodule | cut -c43- | while read -r line; do (git rm "$line"); done - git config --local -l | grep submodule | sed -e 's/^\(submodule\.[^.]*\)\(.*\)/\1/g' | while read -r line; do (git config --local --remove-section "$line"); done - rm -rf .gitmodules .git/modules - git reset --hard HEAD + sudo rm -fr $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE - name: Checkout uses: actions/checkout@v2 - name: Setup Zig