Skip to content

Commit

Permalink
venv broken
Browse files Browse the repository at this point in the history
  • Loading branch information
TjerkNan committed Oct 15, 2024
1 parent a7b1227 commit 5bf7971
Showing 1 changed file with 19 additions and 11 deletions.
30 changes: 19 additions & 11 deletions .github/workflows/build_venv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,26 @@ on:
- v*
jobs:
build:
strategy:
matrix:
python_version: ['3.11']
runs-on: ubuntu-22.04
steps:
- name: Install required libraries
run: sudo apt install -y libsystemd-dev
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV &&
echo "PKG_NAME=`basename $GITHUB_REPOSITORY -private`" >> $GITHUB_ENV
- name: Build venv package
uses: minvws/nl-irealisatie-generic-pipelines/.github/actions/python-venv-package@main
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v4
- name: prep
run: sudo mkdir -p /usr/local/rdo-journalert/current/
- name: prep chown
run: sudo chown `id -u`:`id -g` /usr/local/rdo-journalert/current/
- name: copy project to run location.
run: cp -r ./requirements.txt /usr/local/rdo-journalert/current/
- name: Create env
run: python3 -m venv /usr/local/rdo-journalert/current/.venv
- name: pip3 install
run: cd /usr/local/rdo-journalert/current; source .venv/bin/activate; pip install -U pip; pip install -r requirements.txt
- name: Create archive
run: cd /usr/local/rdo-journalert/current/; tar -czf $GITHUB_WORKSPACE/rdo-journalert_venv_${{ env.RELEASE_VERSION }}.tar.gz .venv
- name: Upload venv tar
uses: actions/upload-artifact@v4
with:
python_version: ${{ matrix.python_version }}
package_file_name: ${{ env.PKG_NAME }}
name: rdo-journalert_venv_${{ env.RELEASE_VERSION }}
path: rdo-journalert_venv_${{ env.RELEASE_VERSION }}.tar.gz

0 comments on commit 5bf7971

Please sign in to comment.