From d4e18ce45d24636f932c8b252f983f1c9e4edba0 Mon Sep 17 00:00:00 2001 From: ZiMing Mo Date: Sun, 18 Dec 2022 19:43:17 +0800 Subject: [PATCH] CI: remove unused worflow Signed-off-by: ZiMing Mo --- .github/workflows/toolchain.yml | 64 --------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 .github/workflows/toolchain.yml diff --git a/.github/workflows/toolchain.yml b/.github/workflows/toolchain.yml deleted file mode 100644 index d6abab4dec..0000000000 --- a/.github/workflows/toolchain.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: Build Toolchains - -on: - pull_request: - paths: - - '.github/workflows/build.yml' - - '.github/workflows/toolchain.yml' - - 'toolchain/**' - push: - paths: - - '.github/workflows/build.yml' - - '.github/workflows/toolchain.yml' - - 'toolchain/**' - -permissions: - contents: read - -jobs: - determine_targets: - name: Set targets - runs-on: ubuntu-latest - outputs: - target: ${{ steps.find_targets.outputs.target }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set targets - id: find_targets - run: | - export TARGETS="$(perl ./scripts/dump-target-info.pl targets 2>/dev/null \ - | sort -u -t '/' -k1,1 \ - | awk '{ print $1 }')" - - JSON='[' - FIRST=1 - for TARGET in $TARGETS; do - [[ $FIRST -ne 1 ]] && JSON="$JSON"',' - JSON="$JSON"'"'"${TARGET}"'"' - FIRST=0 - done - JSON="$JSON"']' - - echo -e "\n---- targets ----\n" - echo "$JSON" - echo -e "\n---- targets ----\n" - - echo "target=$JSON" >> $GITHUB_OUTPUT - - build: - name: Build Target Toolchain - needs: determine_targets - permissions: - contents: read - packages: read - strategy: - fail-fast: False - matrix: - target: ${{fromJson(needs.determine_targets.outputs.target)}} - uses: ./.github/workflows/build.yml - with: - target: ${{ matrix.target }} - build_toolchain: true