Skip to content

Commit

Permalink
ci: restore azure pipelines and clear legacy implementations
Browse files Browse the repository at this point in the history
- fix windows ci bug: copy recursively the files from subfolders

Signed-off-by: Adrian Stanea <[email protected]>
  • Loading branch information
Adrian-Stanea committed Nov 17, 2023
1 parent 0925bbb commit 2146e17
Show file tree
Hide file tree
Showing 16 changed files with 206 additions and 302 deletions.
97 changes: 0 additions & 97 deletions .travis.yml

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions CI/windows/create_zips.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ $PLATFORM = $Env:PLATFORM

$SRC_DIR = Get-Item -Path $env:BUILD_SOURCESDIRECTORY # path to repo
$OUTSIDE_BUILD = $SRC_DIR.Parent.FullName
$BUILD_DIR = Join-Path $OUTSIDE_BUILD "libm2k-$PLATFORM\*"
$BUILD_DIR = Join-Path $OUTSIDE_BUILD "libm2k-$PLATFORM"


$ARTIFACTS_DIR = Get-Item -Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY # path to repo
New-Item -Path (Join-Path $ARTIFACTS_DIR "libm2k-$PLATFORM") -ItemType Directory
Copy-Item -Path $BUILD_DIR -Destination (Join-Path $ARTIFACTS_DIR "libm2k-$PLATFORM")
Copy-Item -Path $BUILD_DIR -Destination (Join-Path $ARTIFACTS_DIR "libm2k-$PLATFORM") -Recurse -Container

Set-Location $SRC_DIR
Loading

0 comments on commit 2146e17

Please sign in to comment.