pyfly-demo/.gitea/workflows/build.yml

29 lines
531 B
YAML
Raw Permalink Normal View History

2024-07-21 15:40:51 +00:00
name: python-build
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
2024-07-21 18:56:07 +00:00
runs-on: python-latest
2024-07-21 15:40:51 +00:00
steps:
2024-07-21 18:56:07 +00:00
- name: Show Environment
2024-07-21 15:40:51 +00:00
run:
2024-07-21 18:57:12 +00:00
uname -a
2024-07-21 18:58:37 +00:00
&& git --version
2024-07-21 15:40:51 +00:00
&& python --version
&& pip --version
2024-07-21 15:58:29 +00:00
&& which python3
2024-07-21 18:56:07 +00:00
- name: Clone Repo
run:
2024-07-21 18:58:37 +00:00
git clone https://repos.gmgauthier.com/gmgauthier/pyfly-demo.git .
2024-07-21 18:56:07 +00:00
- name: Install
run:
./install.sh
- name: Execute
run:
2024-07-21 19:05:16 +00:00
./rundemo.sh
2024-07-21 15:58:29 +00:00