From 3b3459e0d34d004ecf270b4be2134ead2459115a Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Thu, 11 Mar 2021 18:53:34 -0500 Subject: Remove IWYU from lint workflow --- .github/workflows/lint.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) (limited to '.github') diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d129507..e09454b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,10 +11,6 @@ on: schedule: - cron: '0 10 * * *' -env: - SCE_ROOT_DIR: ${{ github.workspace }}/ci-base/SCE - SCE_PSP2_SDK_DIR: ${{ github.workspace }}/ci-base/sdk - jobs: lint: @@ -25,13 +21,6 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Checkout CI base - uses: actions/checkout@v2 - with: - repository: Vita-Development-Suite/ci-base - path: ci-base - token: ${{ secrets.PRIVATE_REPO_TOKEN }} - - name: Check NIDs sort run: | python3 scripts/nids-check-sort.py @@ -43,30 +32,3 @@ jobs: - name: Check NIDs digest run: | python3 scripts/nids-check-digest.py - - - name: Check IWYU - run: | - sudo apt-get -qy install iwyu - python3 scripts/gen-test-compile.py - IWYU_COMMON_OPTS=" \ - -Xiwyu --mapping_file=iwyu.imp \ - -Xiwyu --no_comment \ - -Xiwyu --verbose=1 \ - -isystem ${{ env.SCE_PSP2_SDK_DIR }}/target/include \ - -isystem ${{ env.SCE_PSP2_SDK_DIR }}/target/include_common \ - -isystem ${{ env.SCE_PSP2_SDK_DIR }}/host_tools/build/include \ - --target=armv7a-none-eabi \ - -D __builtin_scei_arm_mrc(...)=0 \ - -D __builtin_scei_arm_mcr(...)=0 \ - -D __builtin_scei_arm_mcrr(...)=0 \ - -D __builtin_scei_arm_dsb_sy(...)=0 \ - -D __builtin_scei_arm_dmb_sy(...)=0" - find include/common -type f -exec \ - iwyu -Xiwyu --check_also='{}' all-common.cpp \ - -isystem include/common $IWYU_COMMON_OPTS ';' - find include/user -type f -exec \ - iwyu -Xiwyu --check_also='{}' all-user.cpp \ - -isystem include/user -isystem include/common $IWYU_COMMON_OPTS ';' - find include/kernel -type f -exec \ - iwyu -Xiwyu --check_also='{}' all-kernel.cpp \ - -isystem include/kernel -isystem include/common $IWYU_COMMON_OPTS ';' -- cgit v1.2.3