Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: stop using dockerhub token #5461

Merged
merged 1 commit into from
Mar 11, 2025
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
4 changes: 0 additions & 4 deletions buildspec/linuxIntegrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ phases:
install:
commands:
- startDocker.sh
# login to DockerHub so we don't get throttled
- export DOCKER_USERNAME=`echo $DOCKER_HUB_TOKEN | jq -r '.username'`
- export DOCKER_PASSWORD=`echo $DOCKER_HUB_TOKEN | jq -r '.password'`
- docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD || true
# should probably be managed as an extension/rule in any tests that need a screen available
- /usr/bin/Xvfb :22 -screen 0 1920x1080x24 &

Expand Down
5 changes: 0 additions & 5 deletions buildspec/linuxUiTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ phases:
commands:
- dnf install -y marco mate-media e2fsprogs
- startDesktop.sh

# login to DockerHub so we don't get throttled
- export DOCKER_USERNAME=`echo $DOCKER_HUB_TOKEN | jq -r '.username'`
- export DOCKER_PASSWORD=`echo $DOCKER_HUB_TOKEN | jq -r '.password'`
- docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD || true
- export PATH="$PATH:$HOME/.dotnet/tools"
- dotnet codeartifact-creds install

Expand Down
Loading