From e4ecf0529b6a353ec50b312b7b3700dcb35a01ed Mon Sep 17 00:00:00 2001 From: hoangvv Date: Wed, 15 Jan 2025 09:08:46 +0700 Subject: [PATCH] update @native --- .gitea/workflows/setup_native.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/setup_native.yml b/.gitea/workflows/setup_native.yml index b4debd87c..1e15907f7 100644 --- a/.gitea/workflows/setup_native.yml +++ b/.gitea/workflows/setup_native.yml @@ -5,17 +5,16 @@ on: - main jobs: - test: - runs-on: host - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - with: - ref: ${{ github.ref_name }} - - name: Activate python virtual - run: python3 -m venv venv - - name: test venv - run: ${{ github.workspace }}/venv/bin/pip --version + # test: + # runs-on: host + # steps: + # - name: Checkout Repository + # uses: actions/checkout@v4 + # with: + # ref: ${{ github.ref_name }} + + # - name: test venv + # run: ${{ github.workspace }}/venv/bin/pip --version setup_native: if: contains(github.event.head_commit.message, '@native') runs-on: host @@ -24,6 +23,8 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.ref_name }} + - name: Create python virtualenv + run: python3 -m venv venv - name: Setup run: make install