Skip to content

add a simple gui & update the docker file #22

add a simple gui & update the docker file

add a simple gui & update the docker file #22

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches:
- alpha_test
paths-ignore:
- 'README.md'
- 'README_CN.md'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'README_CN.md'
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash -l {0}
container:
image: openxrlab/xrsfm_runtime:ubuntu20.04_cu12.1.0
credentials:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PWD}}
steps:
- uses: actions/checkout@v2
- name: Build and install
run: |
mv /xrprimer ../
cmake -B build
cmake --build build -j4