From d2c745c285150cd211667fd8691369747d82095e Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 15 Aug 2024 11:45:38 -0700 Subject: [PATCH] . --- .github/workflows/build.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c50127752..91cc02acf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,18 +4,17 @@ jobs: build_ubuntu_x64: runs-on: gha-runner-x64 steps: - - name: gitconfig - run: | - git config --global core.autocrlf input - # git config --global core.eol lf + # - name: gitconfig + # run: | + # git config --global core.autocrlf input + # # git config --global core.eol lf - name: checkout uses: actions/checkout@v3 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@stable with: toolchain: stable - target: x86_64-unknown-linux-gnu - override: true + target: x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu components: rustfmt, clippy - name: Set up cargo cache