mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Switch to venv on Linux
This commit is contained in:
parent
4f412b5989
commit
d92927aff4
48
.github/workflows/ci.yml
vendored
48
.github/workflows/ci.yml
vendored
@ -112,7 +112,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get remove needrestart || echo Ignored
|
sudo apt-get remove needrestart || echo Ignored
|
||||||
sudo apt-get install -y libssl-dev zlib1g-dev python3-cryptography
|
|
||||||
|
|
||||||
- name: Set up Python (macOS)
|
- name: Set up Python (macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
@ -121,11 +120,16 @@ jobs:
|
|||||||
python-version: '3.13'
|
python-version: '3.13'
|
||||||
architecture: 'arm64'
|
architecture: 'arm64'
|
||||||
|
|
||||||
- name: Set up Python virtual environment (macOS)
|
- name: Set up Python virtual environment (Linux/macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os != 'Windows'
|
||||||
run: |
|
run: |
|
||||||
python -m venv --system-site-packages --copies venv
|
python -m venv --system-site-packages --copies venv
|
||||||
|
|
||||||
|
- name: Set up Python virtual environment (Windows)
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
run: |
|
||||||
|
python.exe -m venv --system-site-packages --copies venv
|
||||||
|
|
||||||
- name: Install Xcode (macOS)
|
- name: Install Xcode (macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
uses: maxim-lobanov/setup-xcode@v1
|
uses: maxim-lobanov/setup-xcode@v1
|
||||||
@ -138,6 +142,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
cmake-version: '3.20.0'
|
cmake-version: '3.20.0'
|
||||||
|
|
||||||
|
- name: Install python3 cryptography module (Linux)
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
run: |
|
||||||
|
source venv/bin/activate
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
python -m pip install --no-binary :all: cryptography
|
||||||
|
python -c "import sys; print(sys.executable)"
|
||||||
|
python --version
|
||||||
|
python -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
|
||||||
|
|
||||||
- name: Install python3 cryptography module (macOS)
|
- name: Install python3 cryptography module (macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
run: |
|
run: |
|
||||||
@ -148,11 +162,6 @@ jobs:
|
|||||||
python --version
|
python --version
|
||||||
python -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
|
python -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
|
||||||
|
|
||||||
- name: Set up Python virtual environment (Windows)
|
|
||||||
if: runner.os == 'Windows'
|
|
||||||
run: |
|
|
||||||
python.exe -m venv --system-site-packages --copies venv
|
|
||||||
|
|
||||||
- name: Install python3 cryptography module (Windows)
|
- name: Install python3 cryptography module (Windows)
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
run: |
|
run: |
|
||||||
@ -164,8 +173,8 @@ jobs:
|
|||||||
python.exe --version
|
python.exe --version
|
||||||
python.exe -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
|
python.exe -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
|
||||||
|
|
||||||
- name: Configure CMake (macOS)
|
- name: Configure CMake (Linux/macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os != 'Windows'
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
cmake \
|
cmake \
|
||||||
@ -190,16 +199,6 @@ jobs:
|
|||||||
-DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/dist" `
|
-DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/dist" `
|
||||||
-DPython3_EXECUTABLE="${{ github.workspace }}\venv\Scripts\python.exe"
|
-DPython3_EXECUTABLE="${{ github.workspace }}\venv\Scripts\python.exe"
|
||||||
|
|
||||||
- name: Configure CMake (Linux)
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: cmake
|
|
||||||
-G "${{matrix.generator}}"
|
|
||||||
-S ${{github.workspace}}
|
|
||||||
-B ${{github.workspace}}/build
|
|
||||||
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
||||||
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/dist
|
|
||||||
-DVCPKG_TARGET_TRIPLET=${{matrix.triplet}}
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake
|
run: cmake
|
||||||
--build ${{github.workspace}}/build
|
--build ${{github.workspace}}/build
|
||||||
@ -213,8 +212,8 @@ jobs:
|
|||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
run: Get-ChildItem -Recurse -Name ..
|
run: Get-ChildItem -Recurse -Name ..
|
||||||
|
|
||||||
- name: Test (macOS)
|
- name: Test (Linux/macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os != 'Windows'
|
||||||
working-directory: ${{github.workspace}}/build
|
working-directory: ${{github.workspace}}/build
|
||||||
run: |
|
run: |
|
||||||
source ../venv/bin/activate
|
source ../venv/bin/activate
|
||||||
@ -227,11 +226,6 @@ jobs:
|
|||||||
..\venv\Scripts\Activate.ps1
|
..\venv\Scripts\Activate.ps1
|
||||||
ctest -C ${{env.BUILD_TYPE}}
|
ctest -C ${{env.BUILD_TYPE}}
|
||||||
|
|
||||||
- name: Test (Linux)
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
working-directory: ${{github.workspace}}/build
|
|
||||||
run: ctest -C ${{env.BUILD_TYPE}}
|
|
||||||
|
|
||||||
- name: Upload the errors
|
- name: Upload the errors
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: failure()
|
if: failure()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user