Skip to content

Commit

Permalink
playing with syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
JComins000 committed Oct 29, 2024
1 parent 70a34cd commit 333ff1e
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .circleci/real_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2697,10 +2697,18 @@ jobs:
executor: << parameters.executor-name >>
steps:
- checkout
- unless:
condition: << parameters.executor-name >> == "win/default"
steps:
- run:
name: Install git
command: |
apt update
apt install -y git
- run:
name: Set VERSION environment variable
command: |
echo "export VERSION=$(~/project/version.sh)" >> $BASH_ENV
echo "export VERSION=$(cd ~/project && ./version.sh)" >> $BASH_ENV
- python-report
# Running the pip executable causes an error with the win/default executor for some reason.
- run: python -m pip install --upgrade --user pip
Expand Down Expand Up @@ -4029,19 +4037,12 @@ workflows:
<<: *do-not-run-on-manual-trigger
jobs:
- test-cli:
pre-steps:
- run:
name: Install git
command: |
apt update
apt install -y git
matrix:
parameters:
executor-name:
- "python-38"
- "python-39"
- test-cli:
executor-name: "win/default"
- "win/default"
test-unit:
<<: *do-not-run-on-manual-trigger
jobs:
Expand Down

0 comments on commit 333ff1e

Please sign in to comment.