Skip to content

Commit

Permalink
Add latest mac workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-alexandrov committed Aug 1, 2024
1 parent 22a5de6 commit 5bc43d5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ssh_latest.yml
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

0 comments on commit 5bc43d5

Please sign in to comment.