diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 27b3073..2c6f225 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -43,13 +43,21 @@ jobs: - name: Linux - Install GNU 64-bit AARCH64 compilers run: sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu binutils-aarch64-linux-gnu - - name: Linux - check 'asm' directory - run: - echo "${{hashFiles('/usr/include/asm')}}" - ls -al /usr/include/ - echo "------------" - echo "${{hashFiles('/usr/include/asm-generic')}}" - ls -al /usr/include/asm-generic + - name: check 'asm' hash + run: echo "${{hashFiles('/usr/include/asm')}}" + + - name: list /usr/include/ + run: ls -al /usr/include/ + + - name: chek 'asm-generic' + run: echo "${{hashFiles('/usr/include/asm-generic')}}" + + - name: list /usr/include/asm-generic + run: ls -al /usr/include/asm-generic + + - name: Linux - Fix 'asm' directory issue. + if: ${{ hashFiles('/usr/include/asm') == ''}} + run: sudo ln -s /usr/include/asm-generic/ /usr/include/asm - name: Linux - Fix 'asm' directory issue, create sym-link if does not exist. if: ${{ hashFiles('/usr/include/asm') == '' && hashFiles('/usr/include/asm-generic') != ''}} diff --git a/.github/workflows/cmake-linux-cc.yml b/.github/workflows/cmake-linux-cc.yml index be34ecf..14549dd 100644 --- a/.github/workflows/cmake-linux-cc.yml +++ b/.github/workflows/cmake-linux-cc.yml @@ -1,10 +1,10 @@ name: CMake Linux Cross-Compile on: - push: # Keep empty to run on each branch when push the code. Otherwise use branches: [ master ] - # branches: [ main ] - pull_request: # Set to master to run only when merge with master branch - # branches: [ main ] +# push: # Keep empty to run on each branch when push the code. Otherwise use branches: [ master ] +# branches: [ main ] +# pull_request: # Set to master to run only when merge with master branch +# branches: [ main ] env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 422d79c..94d2ebb 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -1,10 +1,10 @@ name: CMake on: - push: # Keep empty to run on each branch when push the code. Otherwise use branches: [ master ] - # branches: [ main ] - pull_request: # Set to master to run only when merge with master branch - # branches: [ main ] +# push: # Keep empty to run on each branch when push the code. Otherwise use branches: [ master ] +# branches: [ main ] +# pull_request: # Set to master to run only when merge with master branch +# branches: [ main ] env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3b47c63..aa8c30a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -6,11 +6,11 @@ name: "CodeQL" on: - push: - # branches: [ main ] - pull_request: - # The branches below must be a subset of the branches above - # branches: [ main ] +# push: +# branches: [ main ] +# pull_request: +# # The branches below must be a subset of the branches above +# branches: [ main ] schedule: - cron: '32 22 * * 1' diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 7ee3297..456b619 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -6,10 +6,10 @@ name: MSBuild on: - push: - # branches: [ main ] - pull_request: - # branches: [ main ] +# push: +# branches: [ main ] +# pull_request: +# branches: [ main ] env: # Path to the solution file relative to the root of the project.