Skip to content

Commit

Permalink
action test
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Mar 30, 2024
1 parent dac64be commit fde94bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build_maixcam.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: Build source code and doc
name: Build MaixCAM

# Controls when the action will run.
on:
Expand Down Expand Up @@ -31,10 +31,12 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Build MaixPy
with:
python-version: ${{ matrix.python-version }}
run: |
echo "-- Check python version must python 3.11 --"
python3 -c 'import sys;print(sys.version); assert sys.version_info >= (3, 11)'
python -c 'import sys;print(sys.version); assert sys.version_info >= (3, 11)'
python3 -c 'import sys;print(sys.version);assert sys.version_info >= (3, 11);assert sys.version_info < (3, 12)'
python -c 'import sys;print(sys.version);assert sys.version_info >= (3, 11);assert sys.version_info < (3, 12)'
ls -al ~/.local/bin/
export PATH=~/.local/bin/:$PATH
# pull sipeed/MaixCDK repo here first
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger_wiki.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: trigger_sipeed_wiki_build
name: trigger wiki

# Controls when the action will run.
on:
Expand Down

0 comments on commit fde94bb

Please sign in to comment.