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