Skip to content

Commit a13548a

Browse files
committed
Fixing cross-compile x86, temporary disabled workflows.
1 parent bad66f4 commit a13548a

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

.github/workflows/cmake-areg-opt.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ jobs:
4545
- name: Linux - Install multilib
4646
run: sudo apt-get install -y gcc-multilib g++-multilib
4747

48+
- name: Linux - list lib directory
49+
shell: bash
50+
run: ls -al /usr/lib/
51+
52+
- name: Linux - list lib/i386-linux-gnu directory
53+
shell: bash
54+
run: ls -al /usr/lib/i386-linux-gnu
55+
4856
- name: Linux - Configure Demo, include AREG SDK after project(), GNU on x86, shared
4957
working-directory: ${{github.workspace}}
5058
run: cmake -B ./product/cache/gnu-x86-so -DAREG_COMPILER_FAMILY=gnu -DAREG_PROCESSOR=x86

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: CMake
33
on:
44
push: # Keep empty to run on each branch when push the code. Otherwise use branches: [ master ]
55
branches: [ main ]
6-
pull_request: # Set to master to run only when merge with master branch
7-
branches: [ main ]
6+
# pull_request: # Set to master to run only when merge with master branch
7+
# branches: [ main ]
88

99
env:
1010
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ name: "CodeQL"
88
on:
99
push:
1010
branches: [ main ]
11-
pull_request:
11+
# pull_request:
1212
# The branches below must be a subset of the branches above
13-
branches: [ main ]
13+
# branches: [ main ]
1414
schedule:
1515
- cron: '32 22 * * 1'
1616

.github/workflows/msbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ name: MSBuild
88
on:
99
push:
1010
branches: [ main ]
11-
pull_request:
12-
branches: [ main ]
11+
# pull_request:
12+
# branches: [ main ]
1313

1414
env:
1515
# Path to the solution file relative to the root of the project.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ macro(macro_load_areg_sdk)
4343
FetchContent_Declare(
4444
areg-sdk
4545
GIT_REPOSITORY https://github.com/aregtech/areg-sdk.git
46-
GIT_TAG "master"
46+
GIT_TAG "bugfix/460-fix-areg-sdk-demo-workflow"
4747
)
4848
message(STATUS "Demo: >>> AREG SDK sources are fetched, setting up areg-sdk ...")
4949
FetchContent_MakeAvailable(areg-sdk)

0 commit comments

Comments
 (0)