Skip to content

Commit

Permalink
UpdateBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
angrave committed Mar 1, 2024
1 parent 722e0d8 commit 3d86b31
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
1 change: 1 addition & 0 deletions API.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ WORKDIR /src
COPY ./ClassTranscribeDatabase/ClassTranscribeDatabase.csproj ./ClassTranscribeDatabase/ClassTranscribeDatabase.csproj
# Did not help ENV DOTNET_NUGET_SIGNATURE_VERIFICATION=false
# Add --verbosity normal|diagnostic
RUN dotnet --list-sdks
RUN dotnet restore --verbosity diagnostic ./ClassTranscribeDatabase/ClassTranscribeDatabase.csproj

COPY ./ClassTranscribeServer/ClassTranscribeServer.csproj ./ClassTranscribeServer/ClassTranscribeServer.csproj
Expand Down
2 changes: 1 addition & 1 deletion ClassTranscribeDatabase/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.1.201"
"version": "8.0.201"
}
}
2 changes: 1 addition & 1 deletion ClassTranscribeServer/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.100-1"
"version": "8.0.201"
}
}
2 changes: 1 addition & 1 deletion TaskEngine/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.100-1"
"version": "8.0.201"
}
}
19 changes: 11 additions & 8 deletions install-speech-hack-libssl1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@
# Temporary 2024 Hack for MS SpeechSDK to run on dotnet8
# https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/2204

ARCH=$(dpkg --print-architecture)
SSLVERSION="1.1.1f"

ARCH=$(dpkg --print-architecture)
if [ "$ARCH" = "arm64" ] ; then
BASE="http://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/"
BASE="http://ports.ubuntu.com/pool/main/o/openssl"
RELEASE="1ubuntu2"
else
BASE="http://security.ubuntu.com/ubuntu/pool/main/o/openssl/"
BASE="http://security.ubuntu.com/ubuntu/pool/main/o/openssl"
RELEASE="1ubuntu2"
fi

wget $BASE/libssl1.1_1.1.1f-1ubuntu2.20_${ARCH}.deb
wget $BASE/libssl-dev_1.1.1f-1ubuntu2.20_${ARCH}.deb
dpkg -i libssl1.1_1.1.1f-1ubuntu2.20_${ARCH}.deb
dpkg -i libssl-dev_1.1.1f-1ubuntu2.20_${ARCH}.deb
rm libssl1.1_1.1.1f-1ubuntu2.20_${ARCH}.deb libssl-dev_1.1.1f-1ubuntu2.20_${ARCH}.deb
wget ${BASE}/libssl1.1_${SSLVERSION}-${RELEASE}_${ARCH}.deb
wget ${BASE}/libssl-dev_${SSLVERSION}-${RELEASE}_${ARCH}.deb
dpkg -i libssl1.1_${SSLVERSION}-${RELEASE}_${ARCH}.deb
dpkg -i libssl-dev_${SSLVERSION}-${RELEASE}_${ARCH}.deb
rm libssl1.1_${SSLVERSION}-${RELEASE}_${ARCH}.deb libssl-dev_${SSLVERSION}-${RELEASE}_${ARCH}.deb


0 comments on commit 3d86b31

Please sign in to comment.