From 9550ed18da123ef872a6dd5d9ab2a03e4b3911e7 Mon Sep 17 00:00:00 2001 From: Brett Webster Date: Sat, 27 Jul 2024 17:37:49 -0500 Subject: [PATCH] macox test --- .github/workflows/macos-ci.yml | 2 +- ci-build/mac-ci-pipeline.yml | 28 ---------------------------- ci-build/ubuntu-ci-pipeline.yml | 28 ---------------------------- ci-build/win-ci-pipeline.yml | 28 ---------------------------- 4 files changed, 1 insertion(+), 85 deletions(-) delete mode 100644 ci-build/mac-ci-pipeline.yml delete mode 100644 ci-build/ubuntu-ci-pipeline.yml delete mode 100644 ci-build/win-ci-pipeline.yml diff --git a/.github/workflows/macos-ci.yml b/.github/workflows/macos-ci.yml index 8244a93..a4edb11 100644 --- a/.github/workflows/macos-ci.yml +++ b/.github/workflows/macos-ci.yml @@ -26,7 +26,7 @@ jobs: - name: Restore dependencies run: dotnet restore - name: SciSharp Mac OS Dependencies - run: dotnet add package SciSharp.TensorFlow.Redist-OSX + run: dotnet add src\Pandas.NET\Pandas.NET.csproj package SciSharp.TensorFlow.Redist-OSX - name: Build run: dotnet build --no-restore - name: Test diff --git a/ci-build/mac-ci-pipeline.yml b/ci-build/mac-ci-pipeline.yml deleted file mode 100644 index 55b9ca1..0000000 --- a/ci-build/mac-ci-pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -pool: - vmImage: 'macOS-12' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - inputs: - command: build - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' - -- task: DotNetCoreCLI@2 - inputs: - command: test - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' diff --git a/ci-build/ubuntu-ci-pipeline.yml b/ci-build/ubuntu-ci-pipeline.yml deleted file mode 100644 index 7ded755..0000000 --- a/ci-build/ubuntu-ci-pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -pool: - vmImage: 'ubuntu-22.04' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - inputs: - command: build - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' - -- task: DotNetCoreCLI@2 - inputs: - command: test - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' diff --git a/ci-build/win-ci-pipeline.yml b/ci-build/win-ci-pipeline.yml deleted file mode 100644 index 642fd51..0000000 --- a/ci-build/win-ci-pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -pool: - vmImage: 'windows-2022' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - inputs: - command: build - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' - -- task: DotNetCoreCLI@2 - inputs: - command: test - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'