ssh #9
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
name: ssh | |
# Build and test in a remote session for debugging purposes. | |
on: | |
workflow_dispatch: | |
env: | |
# Note that this the Ubuntu version shows up twice below, because of | |
# limitations of the synax of this file. | |
LINUX_VERSION: ubuntu-22.04 | |
jobs: | |
UnixCondaBuild: | |
name: UnixCondaBuild | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
# os: [ubuntu-22.04, macos-latest] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Cache conda | |
id: cache-conda | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-conda | |
with: | |
## Cache the conda dependencies. They will be created manually in | |
## the next step, after logging in to the upterm session, | |
## and the actual caching will happen when this recipe exits. | |
## Changes to the cache cannot be saved, so it should | |
## be wiped from the web interface if desired to recreate it. | |
path: | | |
/usr/local/miniconda/envs | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/miniconda.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
# - uses: conda-incubator/setup-miniconda@v2 | |
# with: | |
# miniconda-version: "latest" | |
# activate-environment: buildenv | |
# environment-file: conda_build_env.yml | |
# auto-activate-base: false | |
# auto-update-conda: true | |
# python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get update -qq | |
sudo apt-get install -y libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libxext-dev libxfixes-dev libgl1-mesa-dev | |
fi | |
- name: Set up an upterm session with ssh access | |
uses: lhotari/action-upterm@v1 | |
with: | |
## Limit access to specified users | |
limit-access-to-actor: true | |
limit-access-to-users: oleg-alexandrov | |
## If no one connects after 5 minutes, shut down the server | |
wait-timeout-minutes: 30 | |
# - name: Build Package | |
# run: | | |
# conda build . | |
# - name: Test Package | |
# run: | | |
# echo Empty test | |
- name: Upload Linux | |
if: ${{ matrix.os == env.LINUX_VERSION }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: polyview_${{ matrix.os }}_conda_build | |
path: "/usr/share/miniconda3/envs/buildenv/conda-bld/linux-64" | |
- name: Upload OSX | |
if: ${{ matrix.os == 'macos-latest' }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: polyview_${{ matrix.os }}_conda_build | |
path: "/Users/runner/miniconda3/envs/buildenv/conda-bld/osx-64" | |