Skip to content

Commit

Permalink
Experiment 2
Browse files Browse the repository at this point in the history
aregtech committed Dec 3, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent d8ffb03 commit 2031079
Showing 5 changed files with 32 additions and 24 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
@@ -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') != ''}}
8 changes: 4 additions & 4 deletions .github/workflows/cmake-linux-cc.yml
Original file line number Diff line number Diff line change
@@ -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.)
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -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.)
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -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'

8 changes: 4 additions & 4 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 2031079

Please sign in to comment.