From 97933b67107c6b9f2929a7b563d2d8c1530abbda Mon Sep 17 00:00:00 2001 From: Frank Lee Date: Thu, 24 Mar 2022 16:11:49 +0800 Subject: [PATCH] [devops] recover tsinghua pip source due to proxy issue (#509) --- .github/workflows/build.yml | 1 + .github/workflows/compatibility_test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index db4e90e2a..b50add842 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,7 @@ jobs: steps: - name: Install dependencies run: | + pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple pip install -U pip setuptools wheel --user pip install pytest tensorboard transformers - uses: actions/checkout@v2 diff --git a/.github/workflows/compatibility_test.yml b/.github/workflows/compatibility_test.yml index 416dc7834..c87c13246 100644 --- a/.github/workflows/compatibility_test.yml +++ b/.github/workflows/compatibility_test.yml @@ -25,6 +25,7 @@ jobs: steps: - name: Install dependencies run: | + pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple pip install -U pip setuptools wheel --user pip install pytest tensorboard deepspeed apex - uses: actions/checkout@v2