Skip to content

不修复这个action我 #2

不修复这个action我

不修复这个action我 #2

Workflow file for this run

name: BuildForLinux
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install pip
run: python -m ensurepip --upgrade
- name: Install make
run: sudo apt-get update && sudo apt-get install -y make
- name: Install required libraries
run: |
python -m pip install --upgrade pip
pip install -r target/Python/needlibs.txt
- name: Build project
run: |
cd target/build; make VERSION=release TARGET=Linux build