-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stabilize CI-build-and-test jobs on Ubuntu Linux 22.04
This commit attempts to keep the CI tests runing cleanly. Some tests are failing due to different issues reported under issue #242 and #244. Those will need some minor corrections in build-steps. For now, 5 test-cases from test.sh are commented out with a Warning message. - Skip few simulated-SEV related build-and-test cases. - Skip ISLET-related build-and-test tests due to rustc version incompatibility. Those will need to be re-enabled when above two issues are resolved, if possible. (If further investigation shows that we cannot support Ubunutu 22.04, then some changes will need to be made in CI's build.yml to drop-down to an older Ubuntu rev-level.)
- Loading branch information
Showing
5 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
# ############################################################################## | ||
# Simple script to grab OS-specific config for Linux boxes. | ||
# | ||
# History: | ||
# Apr 2024 Added to debug CI-build-jobs' instability on CCC CI-harness. | ||
# ############################################################################## | ||
|
||
numCPUs=`grep "^processor" /proc/cpuinfo | wc -l` | ||
cpuModel=`grep "model name" /proc/cpuinfo | head -1 | cut -f2 -d':'` | ||
cpuVendor=`grep "vendor_id" /proc/cpuinfo | head -1 | cut -f2 -d':'` | ||
totalMemGB=`free -g | grep "^Mem:" | awk '{print $2}'` | ||
|
||
uname -a | ||
echo "${cpuVendor}, ${numCPUs} CPUs, ${totalMemGB} GB, ${cpuModel}" | ||
ping -4 -c 1 `uname -n` | head -2 | ||
|
||
echo | ||
lsb_release -a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters