Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azlinux3 dnf packages for compiler installation #423

Merged
merged 33 commits into from
Feb 12, 2025
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
066a8e7
Adding packages to install for azlinux3.
Jan 16, 2025
3e8ad0d
Adding git as a package installed via dnf.
Jan 16, 2025
81b3d1b
Merge branch 'main' into users/saibulusu/azlinux3-fixes
Jan 16, 2025
dd269c0
Upversion
Jan 16, 2025
a11774e
gcc version is empty by default. Throwing error if gcc version is not…
Jan 17, 2025
af0591d
Fixing typo.
Jan 17, 2025
95ffa31
Merge branch 'main' into users/saibulusu/azlinux3-fixes
saibulusu Jan 21, 2025
2a3a41d
Fixing test.
Jan 22, 2025
12e2b8a
Merge branch 'users/saibulusu/azlinux3-fixes' of https://github.com/m…
Jan 22, 2025
0b481fc
Adding make for RHEL/Cent OS.
Jan 22, 2025
0fa874a
Logging gcc version, only confirming version if supplied version is u…
Jan 22, 2025
7c236e0
Installing version-less packages for ubuntu/debian.
Jan 25, 2025
fc19076
Merge branch 'main' into users/saibulusu/azlinux3-fixes
saibulusu Jan 27, 2025
956dd57
Adding libnsl package for RHEL/CentOS.
Jan 27, 2025
bfc5f0d
Merge branch 'users/saibulusu/azlinux3-fixes' of https://github.com/m…
Jan 27, 2025
1ea9d73
Removed speccpu gcc limit in documentation, and checking for gcc vers…
Jan 28, 2025
818e362
Merge branch 'main' into users/saibulusu/azlinux3-fixes
Feb 6, 2025
07c2583
Removing existing version of gcc before installing new version.
Feb 6, 2025
628d2a1
Dnf remove instead of apt-get for CentOS/RHEL.
Feb 6, 2025
979111d
Getting gcc version, if already installed and not supplied, does not …
Feb 9, 2025
329d76b
Merge branch 'main' into users/saibulusu/azlinux3-fixes
Feb 9, 2025
6baec51
Fixing unit test for case where supplied version is empty.
Feb 9, 2025
b2669bc
Adding a unit test for no supplied version, with existing version.
Feb 9, 2025
5f3fe02
Splitting dumpversion output
Feb 10, 2025
a915509
upversion
Feb 10, 2025
2f79170
Removing compiler name from compiler installation, compiler version f…
Feb 11, 2025
be86c4f
Adding purge and updating unit tests.
Feb 11, 2025
9898976
Merge branch 'main' into users/saibulusu/azlinux3-fixes
saibulusu Feb 11, 2025
74edabf
upversion
Feb 11, 2025
cdc0871
Removing compiler name, setting compiler version empty.
Feb 12, 2025
10ecf06
Removing unecessary unit test.
Feb 12, 2025
9343f8f
Fixing unit test for windows speccpu.
Feb 12, 2025
b7fbff4
Fixing documentation.
Feb 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding make for RHEL/Cent OS.
saibulusu committed Jan 22, 2025
commit 0b481fc7152f6b0f5fd9d9c3a1bcb3158bab38e0
Original file line number Diff line number Diff line change
@@ -239,7 +239,7 @@ private async Task InstallGccAsync(string gccVersion, EventContext telemetryCont
await this.ExecuteCommandAsync("dnf", "install binutils -y", Environment.CurrentDirectory, telemetryContext, cancellationToken);
await this.ExecuteCommandAsync("dnf", "install glibc-headers glibc-devel -y", Environment.CurrentDirectory, telemetryContext, cancellationToken);
await this.ExecuteCommandAsync("dnf", "install git -y", Environment.CurrentDirectory, telemetryContext, cancellationToken);
await this.ExecuteCommandAsync("dnf", "install gcc -y", Environment.CurrentDirectory, telemetryContext, cancellationToken);
await this.ExecuteCommandAsync("dnf", "install make gcc -y", Environment.CurrentDirectory, telemetryContext, cancellationToken);
}
else
{