Remove debug prints and use github ref in upgrade tests too

This commit is contained in:
GeorgianaElena
2021-04-05 15:57:57 +03:00
parent e60f7603f8
commit 95f7b02375
2 changed files with 1 additions and 9 deletions

View File

@@ -11,14 +11,6 @@ jobs:
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
with: with:
python-version: 3.6 python-version: 3.6
- name: Checkout some env vars
run: |
echo $GITHUB_ACTOR
echo $GITHUB_SHA
echo $GITHUB_REPOSITORY
echo $GITHUB_REF
echo $GITHUB_HEAD_REF
echo $GITHUB_BASE_REF
- name: Set BOOTSTRAP_PIP_SPEC value - name: Set BOOTSTRAP_PIP_SPEC value
run: | run: |
echo "BOOTSTRAP_PIP_SPEC=git+https://github.com/$GITHUB_REPOSITORY.git@$GITHUB_REF" >> $GITHUB_ENV echo "BOOTSTRAP_PIP_SPEC=git+https://github.com/$GITHUB_REPOSITORY.git@$GITHUB_REF" >> $GITHUB_ENV

View File

@@ -14,7 +14,7 @@ jobs:
python-version: 3.6 python-version: 3.6
- name: Set BOOTSTRAP_PIP_SPEC value - name: Set BOOTSTRAP_PIP_SPEC value
run: | run: |
echo "BOOTSTRAP_PIP_SPEC=git+https://github.com/$GITHUB_REPOSITORY.git@$GITHUB_SHA" >> $GITHUB_ENV echo "BOOTSTRAP_PIP_SPEC=git+https://github.com/$GITHUB_REPOSITORY.git@$GITHUB_REF" >> $GITHUB_ENV
echo $BOOTSTRAP_PIP_SPEC echo $BOOTSTRAP_PIP_SPEC
- name: Build systemd image - name: Build systemd image
run: | run: |