Skip to content
Draft
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: 1 addition & 3 deletions .github/workflows/duvet-test-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ jobs:
id: cpu-count
run: echo "count=$(node -p 'require("os").cpus().length')" >> $GITHUB_OUTPUT

- name: Setup git submodules with PAT
- name: Rewrite SSH submodule URLs to HTTPS
run: |
git config --global url."https://github.com/".insteadOf "git@github.com:"
git config --global credential.helper store
echo "https://x-token-auth:${{ secrets.PAT_FOR_SPEC }}@github.com" > ~/.git-credentials

- name: Optimize git for performance
run: |
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/test-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
uses: actions/checkout@v6
with:
submodules: false
token: ${{ secrets.PAT_FOR_SPEC }}

# There are a lot of submodules here
# This initializes the checkouts in parallel (--jobs)
Expand All @@ -32,11 +31,9 @@ jobs:
id: cpu-count
run: echo "count=$(node -p 'require("os").cpus().length')" >> $GITHUB_OUTPUT

- name: Setup git submodules with PAT
- name: Rewrite SSH submodule URLs to HTTPS
run: |
git config --global url."https://github.com/".insteadOf "git@github.com:"
git config --global credential.helper store
echo "https://x-token-auth:${{ secrets.PAT_FOR_SPEC }}@github.com" > ~/.git-credentials

- name: Optimize git for performance
run: |
Expand Down
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
branch = main
[submodule "test-server/specification"]
path = test-server/specification
url = git@github.com:awslabs/private-aws-encryption-sdk-specification-staging.git
branch = fire-egg-staging
url = https://github.com/awslabs/aws-encryption-sdk-specification.git
branch = master
[submodule "test-server/net-v4-server/s3ec-net-v4-improved"]
path = test-server/net-v4-server/s3ec-net-v4-improved
url = https://github.com/aws/amazon-s3-encryption-client-dotnet.git
Expand Down
2 changes: 1 addition & 1 deletion test-server/specification
Loading