Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,11 @@ jobs:
-v ${{ github.workspace }}/build_script.sh:/build_script.sh \
-e GITHUB_SHA=${{ github.sha }} \
-w /github/workspace \
ubuntu:22.04 bash -c "
python:3.10-bullseye bash -c "
set -e
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y software-properties-common curl build-essential
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update
apt-get install -y python3.10 python3.10-venv python3.10-dev
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
curl -sSL https://install.python-poetry.org | python3.10 -
apt-get install -y --no-install-recommends build-essential curl
curl -sSL https://install.python-poetry.org | python -
export PATH=\"/root/.local/bin:\$PATH\"
/build_script.sh
"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches:
- main
- develop

jobs:
tests:
runs-on: ubuntu-latest
Expand Down
Loading