[python3] Fix error on ubuntu based systems #736
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-linux | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install nasm | |
run: sudo apt-get install nasm openssl ninja-build autoconf-archive linux-libc-dev | |
- name: Bootstrap the ports | |
run: python3 scripts/buildtools/vcpkg.py --triplet x64-linux --ports-dir . --clean-after-build | |
- name: Archive build logs | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-logs | |
path: | | |
buildtrees/**/config*.log | |
buildtrees/**/build*.log | |
buildtrees/**/install*.log | |
buildtrees/**/package*.log |