Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SpiceQL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aflab
astrogeology
SpiceQL
Commits
9d7f2f65
Unverified
Commit
9d7f2f65
authored
1 year ago
by
Kelvin Rodriguez
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Update deploy.yml
parent
4f18aaa2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/deploy.yml
+46
-0
46 additions, 0 deletions
.github/workflows/deploy.yml
with
46 additions
and
0 deletions
.github/workflows/deploy.yml
+
46
−
0
View file @
9d7f2f65
...
...
@@ -47,7 +47,53 @@ jobs:
aws-access-key-id
:
${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key
:
${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region
:
us-west-2
-
uses
:
actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
-
uses
:
conda-incubator/setup-miniconda@3b0f2504dd76ef23b6d31f291f4913fb60ab5ff3
with
:
miniconda-version
:
"
latest"
activate-environment
:
spiceql
channels
:
conda-forge
environment-file
:
environment.yml
auto-activate-base
:
false
auto-update-conda
:
true
-
name
:
Conda info
run
:
|
conda info
conda list
-
name
:
Create Build Environment
# Some projects don't allow in-source building, so create separate build and install
# directorie; we'll use them as our working directories for subsequent commands.
run
:
|
cmake -E make_directory ${{github.workspace}}/build
cmake -E make_directory ${{github.workspace}}/install
-
name
:
Configure CMake
working-directory
:
${{github.workspace}}/build
run
:
cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DSPICEQL_BUILD_LIB=OFF -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install
-
name
:
Build
working-directory
:
${{github.workspace}}/build
# Execute the build.
run
:
|
cmake --build . --config $BUILD_TYPE
-
name
:
Check Build Docs
working-directory
:
${{github.workspace}}/build/docs/sphinx
# Check for the built docs
run
:
|
test -e index.html
test -e reference/api.html
test -e reference/tutorials.html
-
name
:
Install Docs
working-directory
:
${{github.workspace}}/build
# Install the build.
run
:
|
cmake --install . --config $BUILD_TYPE
-
name
:
Upload to S3
working-directory
:
${{github.workspace}}/install
run
:
|
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment