Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build-multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
python-version: "3.10"
- name: Generate env.py with VNE_KEY
run: |
echo "import os" >> ./vne/env.py
echo "os.environ['VNE_KEY'] = '${{ secrets.VNE_KEY }}'" >> ./vne/env.py
echo "import os" >> env.py
echo "os.environ['VNE_KEY'] = '${{ secrets.VNE_KEY }}'" >> env.py
copy env.py ./vne/env.py
Copy link

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'copy' command is not available on Ubuntu runners. This will cause the Ubuntu job to fail since 'copy' is a Windows-specific command.

Copilot uses AI. Check for mistakes.
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -50,8 +51,9 @@ jobs:
python-version: "3.10"
- name: Generate env.py with VNE_KEY
run: |
echo "import os" >> ./vne/env.py
echo "os.environ['VNE_KEY'] = '${{ secrets.VNE_KEY }}'" >> ./vne/env.py
echo "import os" >> env.py
echo "os.environ['VNE_KEY'] = '${{ secrets.VNE_KEY }}'" >> env.py
cp env.py ./vne/env.py
Copy link

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'cp' command is not available on Windows runners. This will cause the Windows job to fail since 'cp' is a Unix-specific command.

Copilot uses AI. Check for mistakes.
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down