Skip to content

fix

fix #2

Workflow file for this run

name: Build Rucio Clients Tarball
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y make gcc zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev libssl-dev tk-dev libffi-dev liblzma-dev uuid-dev libgdbm-dev libnsl-dev git curl
- name: Install pyenv
run: |
curl https://pyenv.run | bash
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init --path)"' >> ~/.bashrc
source ~/.bashrc
- name: Install required Python versions
run: |
pyenv install 3.11.8
- name: Make build script executable
run: chmod +x rucio/make_tarball.sh
- name: Run build script
run: ./rucio/make_tarball.sh
- name: Upload tarball artifact
uses: actions/upload-artifact@v4
with:
name: rucio-clients
path: rucio-clients-*.tar.gz