Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiaoying committed Apr 22, 2024
1 parent f50f65b commit 902edd5
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,19 +181,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set python version
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install tools
run: |
python --version
python -m pip install -q --upgrade pip
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update
apt-get install -y curl postgresql-client build-essential pkg-config libssl-dev git sqlite3 libsqlite3-dev mysql-client libmysqlclient-dev libicu66 libkrb5-dev libclang-dev
pip install mssql-cli
pip install cli-helpers==2.2.0
apt-get install -y python${{ matrix.python-version }} curl postgresql-client build-essential pkg-config libssl-dev git sqlite3 libsqlite3-dev mysql-client libmysqlclient-dev libicu66 libkrb5-dev libclang-dev
ln -s `which python${{ matrix.python-version }}` /usr/local/bin/python
python -m pip install mssql-cli
python -m pip install cli-helpers==2.2.0
env:
DEBIAN_FRONTEND: noninteractive

Expand Down Expand Up @@ -221,7 +216,7 @@ jobs:

- name: Install other dependent tools
run: |
pip install poetry
python -m pip install poetry
if [ ! -f "$HOME/.cargo/bin/just" ]; then curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/.cargo/bin; fi
- name: Seed the database
Expand Down

0 comments on commit 902edd5

Please sign in to comment.