From c3b38a52550187aee4a2b3961323747b0e7cd689 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 25 Feb 2022 01:21:33 +0000 Subject: [PATCH] Move Scripts Folder --- {scripts => .github/scripts}/build.bash | 0 {scripts => .github/scripts}/common.bash | 0 .../scripts}/set_rust_version.bash | 0 {scripts => .github/scripts}/test.bash | 0 .github/workflows/build.yml | 18 +++++++++--------- 5 files changed, 9 insertions(+), 9 deletions(-) rename {scripts => .github/scripts}/build.bash (100%) rename {scripts => .github/scripts}/common.bash (100%) rename {scripts => .github/scripts}/set_rust_version.bash (100%) rename {scripts => .github/scripts}/test.bash (100%) diff --git a/scripts/build.bash b/.github/scripts/build.bash similarity index 100% rename from scripts/build.bash rename to .github/scripts/build.bash diff --git a/scripts/common.bash b/.github/scripts/common.bash similarity index 100% rename from scripts/common.bash rename to .github/scripts/common.bash diff --git a/scripts/set_rust_version.bash b/.github/scripts/set_rust_version.bash similarity index 100% rename from scripts/set_rust_version.bash rename to .github/scripts/set_rust_version.bash diff --git a/scripts/test.bash b/.github/scripts/test.bash similarity index 100% rename from scripts/test.bash rename to .github/scripts/test.bash diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e56cc57..95d1abd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,11 +35,11 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 50 - - run: scripts/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} + - run: .github/scripts/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} shell: bash - - run: scripts/build.bash cargo ${{ matrix.target }} + - run: .github/scripts/build.bash cargo ${{ matrix.target }} shell: bash - - run: scripts/test.bash cargo ${{ matrix.target }} + - run: .github/scripts/test.bash cargo ${{ matrix.target }} shell: bash strategy: @@ -64,9 +64,9 @@ jobs: - run: chmod +x /usr/local/bin/cross - - run: scripts/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} - - run: scripts/build.bash cross ${{ matrix.target }} - - run: scripts/test.bash cross ${{ matrix.target }} + - run: .github/scripts/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} + - run: .github/scripts/build.bash cross ${{ matrix.target }} + - run: .github/scripts/test.bash cross ${{ matrix.target }} if: matrix.target == 'x86_64-apple-darwin' strategy: @@ -89,9 +89,9 @@ jobs: name: cross-linux-musl path: /tmp/ - run: chmod +x /tmp/cross - - run: scripts/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} - - run: scripts/build.bash /tmp/cross ${{ matrix.target }} - - run: scripts/test.bash /tmp/cross ${{ matrix.target }} + - run: .github/scripts/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} + - run: .github/scripts/build.bash /tmp/cross ${{ matrix.target }} + - run: .github/scripts/test.bash /tmp/cross ${{ matrix.target }} if: | !contains(matrix.target, 'android') && !contains(matrix.target, 'bsd') &&