Skip to content

Commit

Permalink
more linter craziness
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 24, 2024
1 parent 4955c16 commit b1d0d2e
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/Package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,37 @@ jobs:
pwd
ls -la
echo "version variable"
sed -i -e "s/version = \"[^\"]*\"/version = \"${version}\"/" $(find . -name "*.py")
sed -i -e "s/version = \"[^\"]*\"/version = \"${version}\"/" "$(find . -name *.py)"
echo "version comment"
sed -i -e "s/# Version .*/# Version ${version}/" $(find . -name "*.py")
sed -i -e "s/# Version .*/# Version ${version}/" "$(find . -name *.py)"
echo "--------------- head rfswarm_agent.py ---------------"
head -50 rfswarm_agent/rfswarm_agent.py
echo "--------------- cat setup-manager.py ---------------"
cat setup-manager.py
# - name: Clear Dist
# run: |
# rm -R dist/
# - name: Clear Build for Manager
# run: |
# rm -R build/
# - name: Build Manager
# run: |
# python3 setup-manager.py sdist bdist_wheel
# - name: Clear Build for Agent
# run: |
# rm -R build/
# - name: Build Agent
# run: |
# python3 setup-agent.py sdist bdist_wheel
# - name: Clear Build for Reporter
# run: |
# rm -R build/
# - name: Build Reporter
# run: |
# python3 setup-reporter.py sdist bdist_wheel
# - name: Show Dist
# run: |
# ls -la dist

#

0 comments on commit b1d0d2e

Please sign in to comment.