Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
stitchEm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Franco (nextime) Lanza
stitchEm
Commits
9a632037
Commit
9a632037
authored
5 years ago
by
jeremad
Committed by
jeremad
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ci): upload every linux master build
parent
e116eea0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
2 deletions
+40
-2
build.yml
.github/workflows/build.yml
+2
-2
upload.yml
.github/workflows/upload.yml
+38
-0
No files found.
.github/workflows/build.yml
View file @
9a632037
...
...
@@ -10,7 +10,7 @@ jobs:
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
mkdir ../build && cd ../build && cmake -DCMAKE_BUILD_TYPE=
Release
-DRTMP_NVENC=OFF -DCUDA_TARGET_ARCH="50" -DGPU_BACKEND_CUDA=ON -DGPU_BACKEND_OPENCL=OFF -DDISABLE_OPENCL_SPIR=ON -G Ninja ../stitchEm
run
:
mkdir ../build && cd ../build && cmake -DCMAKE_BUILD_TYPE=
Debug
-DRTMP_NVENC=OFF -DCUDA_TARGET_ARCH="50" -DGPU_BACKEND_CUDA=ON -DGPU_BACKEND_OPENCL=OFF -DDISABLE_OPENCL_SPIR=ON -G Ninja ../stitchEm
-
name
:
Build
run
:
cd ../build && ninja
...
...
@@ -20,7 +20,7 @@ jobs:
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
mkdir ../build && cd ../build && cmake -DCMAKE_BUILD_TYPE=
Release
-DGPU_BACKEND_CUDA=OFF -DGPU_BACKEND_OPENCL=ON -DDISABLE_OPENCL_SPIR=ON -G Ninja ../stitchEm
run
:
mkdir ../build && cd ../build && cmake -DCMAKE_BUILD_TYPE=
Debug
-DGPU_BACKEND_CUDA=OFF -DGPU_BACKEND_OPENCL=ON -DDISABLE_OPENCL_SPIR=ON -G Ninja ../stitchEm
-
name
:
Build
run
:
cd ../build && ninja
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/upload.yml
0 → 100644
View file @
9a632037
name
:
Deploy
on
:
push
:
branches
:
-
master
jobs
:
LinuxCuda
:
runs-on
:
ubuntu-latest
container
:
stitchem/stitchem:latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DRTMP_NVENC=OFF -DGPU_BACKEND_CUDA=ON -DGPU_BACKEND_OPENCL=OFF -DLIB_TESTS=OFF -DBUILD_APPS_TESTS=OFF -G Ninja ..
-
name
:
Build
run
:
cd build && ninja
-
name
:
Upload CUDA build
uses
:
actions/upload-artifact@v2
with
:
name
:
Linux CUDA build
path
:
build/bin/x64/release
LinuxOpenCL
:
runs-on
:
ubuntu-latest
container
:
stitchem/stitchem:latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DGPU_BACKEND_CUDA=OFF -DGPU_BACKEND_OPENCL=ON -DDISABLE_OPENCL_SPIR=ON -DLIB_TESTS=OFF -DBUILD_APPS_TESTS=OFF -G Ninja ..
-
name
:
Build
run
:
cd build && ninja
-
name
:
Upload OpenCL build
uses
:
actions/upload-artifact@v2
with
:
name
:
Linux OpenCL build
path
:
build/bin/x64/release
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment