forked from solvcon/devenv
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (42 loc) · 1.18 KB
/
solvcon_runner.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Application Build - SOLVCON
on:
schedule:
- cron: '21 18 * * 5'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
fail-fast: false
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set DEVENV_WORKSPACE
run: echo "DEVENV_WORKSPACE=${GITHUB_WORKSPACE}" >> $GITHUB_ENV
- name: Configure SSH
if: matrix.os == 'disable'
run: |
source contrib/ci-setup-ssh.sh
- name: Dependency (Ubuntu)
if: matrix.os != 'macos-latest'
run: |
source ${DEVENV_WORKSPACE}/contrib/ci-setup-apt.sh
- name: Launch SOLVCON
run: |
source ${DEVENV_WORKSPACE}/scripts/init
devenv add prime
devenv use prime
devenv show
devenv launch solvcon
- name: Show Dependency
run: |
source ${DEVENV_WORKSPACE}/contrib/ci-show-dep.sh
- name: Show Python Env
run: |
source ${DEVENV_WORKSPACE}/contrib/ci-show-python-env.sh
- name: SOLVCON Function Test From Package
run: |
source ${DEVENV_WORKSPACE}/contrib/ci-solvcon-function-test.sh