-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
22a5de6
commit 5bc43d5
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: ssh | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
# Fetch miniconda | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
auto-activate-base: true | ||
activate-environment: "" | ||
# Fetch the code | ||
- uses: actions/checkout@v3 | ||
# No caching of dependencies, as the cache does not change when it is | ||
# modified, and it can expire. See build_test.sh how to fetch an offline | ||
# tarball with dependencies, and how to update that one if need be. | ||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 # disconnects after about 40 minutes | ||
timeout-minutes: 600 | ||
with: | ||
limit-access-to-actor: true | ||
# Upload the artifacts in the directory below. Useful for saving any results | ||
# produced in this session. Can be later downloaded manually and saved to a | ||
# permanent location. | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ASP-dependencies-${{ runner.os }} | ||
path: ~/work/StereoPipeline/packages | ||
retention-days: 2 | ||
continue-on-error: true |