Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Ensure no development packages have been set
run: |
source <(curl -sL http://ci.q-ctrl.com)
./ci docker run qctrl/python-build:3.7 /scripts/check-for-internal-versions.sh
./ci docker run qctrl/ci-images:python-3.7-ci /scripts/check-for-internal-versions.sh
linting:
# Filter out PRs originating from this repository (triggers on-push.yml instead)
if: github.event.pull_request.head.repo.fork == true
Expand All @@ -46,10 +46,10 @@ jobs:
- name: Install Python dependencies
run: |
source <(curl -sL http://ci.q-ctrl.com)
./ci docker run qctrl/python-build:${{ matrix.python }} /scripts/install-python-dependencies.sh
./ci docker run qctrl/ci-images:python-${{ matrix.python }}-ci /scripts/install-python-dependencies.sh
- name: Run Pytest
run: |
./ci docker run qctrl/python-build:${{ matrix.python }} /scripts/pytest.sh
./ci docker run qctrl/ci-images:python-${{ matrix.python }}-ci /scripts/pytest.sh
sphinx_documentation:
# Filter out PRs originating from this repository (triggers on-push.yml instead)
if: github.event.pull_request.head.repo.fork == true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
source <(curl -sL http://ci.q-ctrl.com)
./ci vault login -r ${{ secrets.VAULT_ROLE_ID }} -s ${{ secrets.VAULT_SECRET_ID }}
./ci docker run qctrl/python-build:3.7 /scripts/housekeeping.sh
./ci docker run qctrl/ci-images:python-3.7-ci /scripts/housekeeping.sh

linting:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
run: |
source <(curl -sL http://ci.q-ctrl.com)
./ci vault login -r ${{ secrets.VAULT_ROLE_ID }} -s ${{ secrets.VAULT_SECRET_ID }}
./ci docker run qctrl/python-build:3.7 /scripts/publish-dev-version.sh
./ci docker run qctrl/ci-images:python-3.7-ci /scripts/publish-dev-version.sh

sphinx_documentation:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
run: |
source <(curl -sL http://ci.q-ctrl.com)
./ci vault login -r ${{ secrets.VAULT_ROLE_ID }} -s ${{ secrets.VAULT_SECRET_ID }}
./ci docker run qctrl/python-build:3.7 /scripts/housekeeping.sh
./ci docker run qctrl/ci-images:python-3.7-ci /scripts/housekeeping.sh
- name: Publish publicly
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
source <(curl -sL http://ci.q-ctrl.com)
./ci docker run qctrl/python-build:3.7 /scripts/publish-release-publicly.sh
./ci docker run qctrl/ci-images:python-3.7-ci /scripts/publish-release-publicly.sh
- name: Publish internally
run: |
./ci docker run qctrl/python-build:3.7 /scripts/publish-release-internally.sh
./ci docker run qctrl/ci-images:python-3.7-ci /scripts/publish-release-internally.sh

sphinx_documentation:
runs-on: ubuntu-latest
Expand Down