Skip to content

Commit

Permalink
Merge pull request #731 from bitcraze/toverumar/ci_exp_file
Browse files Browse the repository at this point in the history
Add an experiment file to be able to test new CI stuff on branches
  • Loading branch information
gemenerik authored Nov 29, 2024
2 parents d97169f + f43e963 commit 88e56cc
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/CI_experiment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This is a basic workflow to help you get started with Actions

name: CI experiment

# Controls when the action will run.
on:
workflow_dispatch:

jobs:
checks:
runs-on: ubuntu-latest

steps:
# Checkout, fetch-depth=0 fetches the full repos (required for automatic versioning to work)
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: Check build and install
run: |
pip install setuptools
python3 setup.py sdist
pip install dist/*.tar.gz
- run: docker pull bitcraze/builder

- name: CI checks
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build

0 comments on commit 88e56cc

Please sign in to comment.