Skip to content

Commit

Permalink
(#55) Tests: enable dependency testing for both Ubuntu variants
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed May 26, 2024
1 parent 0585c77 commit a8d8318
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- master
schedule:
- cron: 0 0 * * 1
workflow_dispatch:
workflow_dispatch:
jobs:
build-ubuntu-20-04-x86-64:
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
path: build/tdlib.native.ubuntu-20.04-x64/runtimes/linux-x64/native
- name: Verify library dependencies
shell: pwsh
run: ./linux/Test-Dependencies.ps1
run: ./linux/Test-Dependencies.ps1 -Platform ubuntu-20.04
- name: Set up .NET SDK
uses: actions/setup-dotnet@v4
with:
Expand Down Expand Up @@ -232,6 +232,9 @@ jobs:
with:
name: tdlib.native.ubuntu-22.04.x86-64
path: build/tdlib.native.linux-x64/runtimes/linux-x64/native
- name: Verify library dependencies
shell: pwsh
run: ./linux/Test-Dependencies.ps1 -Platform ubuntu-22.04
- name: Set up .NET SDK
uses: actions/setup-dotnet@v4
with:
Expand Down
7 changes: 5 additions & 2 deletions github-actions.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,10 @@ let workflows = [
platform = Platform.Ubuntu20_04,
arch = Arch.X86_64,
installScript = "./linux/install.ps1 -ForTests",
testArgs = "-NuGet $env:GITHUB_WORKSPACE/tools/nuget.exe -UseMono"
testArgs = "-NuGet $env:GITHUB_WORKSPACE/tools/nuget.exe -UseMono",
afterDownloadSteps = [
pwsh "Verify library dependencies" $"./linux/Test-Dependencies.ps1 -Platform {Platform.Ubuntu20_04}"
]
)

Workflows.TestJob(
Expand All @@ -256,7 +259,7 @@ let workflows = [
installScript = "./linux/install.ps1 -ForTests",
testArgs = "-NuGet $env:GITHUB_WORKSPACE/tools/nuget.exe -UseMono",
afterDownloadSteps = [
pwsh "Verify library dependencies" "./linux/Test-Dependencies.ps1"
pwsh "Verify library dependencies" $"./linux/Test-Dependencies.ps1 -Platform {Platform.Ubuntu22_04}"
]
)

Expand Down
4 changes: 3 additions & 1 deletion linux/Test-Dependencies.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
param (
[Parameter(Mandatory = $true)]
[string] $Platform,
[string] $Package = "$PSScriptRoot/../build/runtimes/linux-x64/native",
[string] $GoldFile = "$PSScriptRoot/../linux/libraries.gold.txt",
[string] $GoldFile = "$PSScriptRoot/../linux/libraries.$Platform.gold.txt",
[string] $ResultFile = "$PSScriptRoot/../linux/libraries.temp.txt",
[switch] $GenerateGold
)
Expand Down
File renamed without changes.
11 changes: 11 additions & 0 deletions linux/libraries.ubuntu-22.04.gold.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
libtdjson.so
linux-vdso.so.1_1
libssl.so.1.1
libcrypto.so.1.1
libz.so.1
libstdc++.so.6
libm.so.6
libpthread.so.0
libc.so.6
/lib64/ld-linux-x86-64.so.2
libgcc_s.so.1

0 comments on commit a8d8318

Please sign in to comment.