Skip to content

Commit aeddf60

Browse files
Merge pull request #568 from rstudio/kg-jupyter-fix
build proper docker containers in nightly workflow
2 parents a38baeb + b89e85b commit aeddf60

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/nightly.yaml

+7-4
Original file line numberDiff line numberDiff line change
@@ -197,22 +197,25 @@ jobs:
197197
CONNECT_LICENSE: ${{ secrets.RSC_LICENSE }}
198198
ADMIN_API_KEY: ${{ secrets.ADMIN_API_KEY }}
199199
steps:
200-
- uses: actions/checkout@v2
200+
- uses: actions/checkout@v4
201+
with:
202+
fetch-depth: 0
201203
env:
202204
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
203205
- uses: extractions/setup-just@v1
204206
env:
205207
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
206208
- name: Build Containers
207209
run: |
208-
just integration-testing/build
210+
cd integration-testing
211+
docker compose build client
212+
docker compose build cypress
209213
- name: Start Connect + rsconnect-jupyter
210214
run: |
211215
just integration-testing/up
212-
216+
213217
- name: Run Cypress Tests
214218
run: |
215-
export ADMIN_API_KEY="${{ secrets.ADMIN_API_KEY }}"
216219
just integration-testing/up-cypress
217220
218221
# Videos are captured whether the suite fails or passes

0 commit comments

Comments
 (0)