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
9 changes: 4 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/gitgalaxy
url: [https://pypi.org/p/gitgalaxy](https://pypi.org/p/gitgalaxy)
permissions:
id-token: write
contents: read
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
git push -f --tags bitbucket

azure-sync:
name: Sync to Azure DevOps
name: Sync to Azure DevOps Repository
needs: pypi-publish
runs-on: ubuntu-latest
steps:
Expand All @@ -91,7 +91,6 @@ jobs:

- name: Sync Code and Tags to Azure
run: |
# Note: Azure Organization, Project, and Repository are all named gitgalaxy
git remote add azure https://${{ secrets.AZURE_DEVOPS_TOKEN }}@https://dev.azure.com/gitgalaxy/gitgalaxy/_git/gitgalaxy
git remote add azure https://${{ secrets.AZURE_SYNC_TOKEN }}@dev.azure.com/squid-protocol/gitgalaxy/_git/gitgalaxy
git push -f azure HEAD:main
git push -f --tags azure
git push -f --tags azure
2 changes: 1 addition & 1 deletion tests/core_engine/test_language_standards_strict.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_c_knr_ambiguity_trap():
+ " INVALID_MACRO"
)

assert_redos_immune(c_func, poison_knr)
assert_redos_immune(c_func, poison_knr, timeout_sec=3.0)

# Ensure it still correctly matches the MS-DOS BEGIN edge case
valid_knr = "int legacy_func(a) \n int a; \n BEGIN \n"
Expand Down
Loading