Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: devcontainers/ci
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2
Choose a base ref
...
head repository: devcontainers/ci
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.1900000324
Choose a head ref
  • 1 commit
  • 162 files changed
  • 1 contributor

Commits on Mar 10, 2023

  1. release

    CI build committed Mar 10, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    snyk-bot Snyk bot
    Copy the full SHA
    fbe99e5 View commit details
Showing with 7,270 additions and 61,011 deletions.
  1. +0 −67 .azure-devops/acr_image_purge.sh
  2. +0 −222 .azure-devops/azure-pipelines.yml
  3. +0 −70 .devcontainer/Dockerfile
  4. +0 −37 .devcontainer/devcontainer.json
  5. +0 −23 .devcontainer/scripts/act.sh
  6. +0 −12 .devcontainer/scripts/azure-cli.sh
  7. +0 −20 .devcontainer/scripts/docker-client.sh
  8. +0 −23 .devcontainer/scripts/gh.sh
  9. +0 −13 .devcontainer/scripts/node.sh
  10. +0 −3 .devcontainer/scripts/postCreate.sh
  11. +0 −1 .gitattributes
  12. +0 −9 .github/dependabot.yml
  13. +0 −234 .github/scripts/build.js
  14. +0 −536 .github/scripts/build.test.js
  15. +0 −15 .github/scripts/package.json
  16. +0 −178 .github/scripts/test-helpers.js
  17. +0 −161 .github/scripts/test-helpers.test.js
  18. +0 −2,534 .github/scripts/yarn.lock
  19. +0 −29 .github/workflows/ci_branch.yml
  20. +0 −1,144 .github/workflows/ci_common.yml
  21. +0 −18 .github/workflows/ci_main.yml
  22. +0 −75 .github/workflows/clean_tags.sh
  23. +0 −34 .github/workflows/clean_untagged.sh
  24. +0 −71 .github/workflows/codeql-analysis.yml
  25. +0 −79 .github/workflows/pr-bot.yml
  26. +0 −26 .github/workflows/pr-closed.yml
  27. +0 −22 .github/workflows/pr_auto.yml
  28. +0 −23 .github/workflows/untagged-image-cleanup.yml
  29. +0 −112 .gitignore
  30. +0 −27 .vscode/launch.json
  31. +0 −9 .vscode/settings.json
  32. +0 −1 CODEOWNERS
  33. +0 −39 CONTRIBUTING.md
  34. +0 −22 LICENSE
  35. +0 −67 README.md
  36. +0 −4 azdo-task/DevcontainersCi/.eslintignore
  37. +0 −55 azdo-task/DevcontainersCi/.eslintrc.json
  38. +0 −3 azdo-task/DevcontainersCi/.prettierignore
  39. +0 −10 azdo-task/DevcontainersCi/.prettierrc.json
  40. +0 −22 azdo-task/DevcontainersCi/Makefile
  41. +0 −16 azdo-task/DevcontainersCi/__tests__/exec.test.ts
  42. +0 −11 azdo-task/DevcontainersCi/jest.config.js
  43. +0 −16,049 azdo-task/DevcontainersCi/package-lock.json
  44. +0 −48 azdo-task/DevcontainersCi/package.json
  45. +0 −3 azdo-task/DevcontainersCi/run-main.js
  46. +0 −3 azdo-task/DevcontainersCi/run-post.js
  47. +0 −71 azdo-task/DevcontainersCi/src/docker.ts
  48. +0 −70 azdo-task/DevcontainersCi/src/exec.ts
  49. +0 −267 azdo-task/DevcontainersCi/src/main.ts
  50. +0 −22 azdo-task/DevcontainersCi/src/skopeo.ts
  51. +0 −130 azdo-task/DevcontainersCi/task.json
  52. +0 −12 azdo-task/DevcontainersCi/tsconfig.json
  53. +0 −22 azdo-task/LICENSE.md
  54. +0 −192 azdo-task/README.md
  55. BIN azdo-task/icon.png
  56. +0 −3 azdo-task/package-lock.json
  57. +0 −80 azdo-task/scripts/build-package.sh
  58. +0 −110 azdo-task/scripts/run-azdo-build.sh
  59. +0 −15 azdo-task/tsconfig.json
  60. +0 −61 azdo-task/vss-extension.json
  61. +0 −86 common/__tests__/config.test.ts
  62. +0 −60 common/__tests__/docker.test.ts
  63. +0 −53 common/__tests__/envvars.test.ts
  64. +0 −35 common/__tests__/users.test.ts
  65. +0 −11 common/jest.config.js
  66. +0 −11,655 common/package-lock.json
  67. +0 −22 common/package.json
  68. +0 −58 common/src/config.ts
  69. +0 −272 common/src/dev-container-cli.ts
  70. +0 −378 common/src/docker.ts
  71. +0 −48 common/src/envvars.ts
  72. +0 −13 common/src/exec.ts
  73. +0 −11 common/src/file.ts
  74. +0 −27 common/src/skopeo.ts
  75. +0 −45 common/src/users.ts
  76. +0 −15 common/tsconfig.json
  77. +0 −192 docs/azure-devops-task.md
  78. +0 −236 docs/github-action.md
  79. +0 −74 docs/multi-platform-builds.md
  80. +0 −4 github-action/.eslintignore
  81. +0 −54 github-action/.eslintrc.json
  82. +0 −3 github-action/.prettierignore
  83. +0 −10 github-action/.prettierrc.json
  84. +0 −19 github-action/Makefile
  85. +20 −0 github-action/dist/config.d.ts
  86. +55 −0 github-action/dist/dev-container-cli.d.ts
  87. +11 −0 github-action/dist/docker.d.ts
  88. +2 −0 github-action/dist/envvars.d.ts
  89. +9 −0 github-action/dist/exec.d.ts
  90. +1 −0 github-action/dist/file.d.ts
  91. +7,017 −0 github-action/dist/index.js
  92. +1 −0 github-action/dist/index.js.map
  93. +137 −0 github-action/dist/licenses.txt
  94. +3 −0 github-action/dist/skopeo.d.ts
  95. +1 −0 github-action/dist/sourcemap-register.js
  96. +13 −0 github-action/dist/users.d.ts
  97. +0 −11 github-action/jest.config.js
  98. +0 −22,277 github-action/package-lock.json
  99. +0 −52 github-action/package.json
  100. +0 −77 github-action/src/docker.ts
  101. +0 −20 github-action/src/exec.ts
  102. +0 −283 github-action/src/main.ts
  103. +0 −24 github-action/src/skopeo.ts
  104. +0 −16 github-action/tsconfig.json
  105. +0 −56 github-tests/Dockerfile/build-args/.devcontainer/Dockerfile
  106. +0 −39 github-tests/Dockerfile/build-args/.devcontainer/devcontainer.json
  107. +0 −20 github-tests/Dockerfile/build-args/.devcontainer/scripts/docker-client.sh
  108. +0 −8 github-tests/Dockerfile/build-only/.devcontainer/Dockerfile
  109. +0 −39 github-tests/Dockerfile/build-only/.devcontainer/devcontainer.json
  110. +0 −60 github-tests/Dockerfile/docker-from-docker-non-root/.devcontainer/Dockerfile
  111. +0 −66 github-tests/Dockerfile/docker-from-docker-non-root/.devcontainer/devcontainer.json
  112. +0 −20 github-tests/Dockerfile/docker-from-docker-non-root/.devcontainer/scripts/docker-client.sh
  113. +0 −23 github-tests/Dockerfile/docker-from-docker-non-root/.devcontainer/scripts/golang.sh
  114. +0 −26 github-tests/Dockerfile/docker-from-docker-non-root/Dockerfile
  115. +0 −8 github-tests/Dockerfile/docker-from-docker-non-root/Makefile
  116. +0 −3 github-tests/Dockerfile/docker-from-docker-non-root/go.mod
  117. 0 github-tests/Dockerfile/docker-from-docker-non-root/go.sum
  118. +0 −7 github-tests/Dockerfile/docker-from-docker-non-root/main.go
  119. +0 −7 github-tests/Dockerfile/docker-from-docker-non-root/scripts/go-tools.sh
  120. +0 −41 github-tests/Dockerfile/docker-from-docker-root/.devcontainer/Dockerfile
  121. +0 −62 github-tests/Dockerfile/docker-from-docker-root/.devcontainer/devcontainer.json
  122. +0 −20 github-tests/Dockerfile/docker-from-docker-root/.devcontainer/scripts/docker-client.sh
  123. +0 −23 github-tests/Dockerfile/docker-from-docker-root/.devcontainer/scripts/golang.sh
  124. +0 −26 github-tests/Dockerfile/docker-from-docker-root/Dockerfile
  125. +0 −8 github-tests/Dockerfile/docker-from-docker-root/Makefile
  126. +0 −5 github-tests/Dockerfile/docker-from-docker-root/go.mod
  127. +0 −77 github-tests/Dockerfile/docker-from-docker-root/go.sum
  128. +0 −7 github-tests/Dockerfile/docker-from-docker-root/main.go
  129. +0 −7 github-tests/Dockerfile/docker-from-docker-root/scripts/go-tools.sh
  130. +0 −49 github-tests/Dockerfile/dockerfile-context/.devcontainer/CustomDockerfile
  131. +0 −28 github-tests/Dockerfile/dockerfile-context/.devcontainer/devcontainer.json
  132. +0 −2 github-tests/Dockerfile/dockerfile-context/context/dummy.sh
  133. +0 −46 github-tests/Dockerfile/env-vars-on-post-create/.devcontainer/Dockerfile
  134. +0 −23 github-tests/Dockerfile/env-vars-on-post-create/.devcontainer/devcontainer.json
  135. +0 −11 github-tests/Dockerfile/env-vars-on-post-create/.devcontainer/post-create.sh
  136. +0 −20 github-tests/Dockerfile/feature-docker-from-docker/.devcontainer/Dockerfile
  137. +0 −42 github-tests/Dockerfile/feature-docker-from-docker/.devcontainer/devcontainer.json
  138. +0 −26 github-tests/Dockerfile/feature-docker-from-docker/Dockerfile
  139. +0 −8 github-tests/Dockerfile/feature-docker-from-docker/Makefile
  140. +0 −3 github-tests/Dockerfile/feature-docker-from-docker/go.mod
  141. 0 github-tests/Dockerfile/feature-docker-from-docker/go.sum
  142. +0 −7 github-tests/Dockerfile/feature-docker-from-docker/main.go
  143. +0 −54 github-tests/Dockerfile/image-tag/.devcontainer/Dockerfile
  144. +0 −30 github-tests/Dockerfile/image-tag/.devcontainer/devcontainer.json
  145. +0 −20 github-tests/Dockerfile/image-tag/.devcontainer/scripts/docker-client.sh
  146. +0 −20 github-tests/Dockerfile/outputs/.devcontainer.json
  147. +0 −50 github-tests/Dockerfile/platform-with-runcmd/.devcontainer/Dockerfile
  148. +0 −37 github-tests/Dockerfile/platform-with-runcmd/.devcontainer/devcontainer.json
  149. +0 −46 github-tests/Dockerfile/run-args/.devcontainer/Dockerfile
  150. +0 −37 github-tests/Dockerfile/run-args/.devcontainer/devcontainer.json
  151. +0 −47 github-tests/Dockerfile/skip-user-update/.devcontainer/Dockerfile
  152. +0 −31 github-tests/Dockerfile/skip-user-update/.devcontainer/devcontainer.json
  153. +0 −28 github-tests/docker-compose/features/.devcontainer/Dockerfile
  154. +0 −30 github-tests/docker-compose/features/.devcontainer/devcontainer.json
  155. +0 −42 github-tests/docker-compose/features/.devcontainer/docker-compose.yml
  156. +0 −49 maintainers.md
  157. +0 −6 scripts/build-local.sh
  158. +0 −59 scripts/build-test-package.sh
  159. +0 −42 scripts/get-latest-cli-build.sh
  160. +0 −41 scripts/gh-release.sh
  161. +0 −15 scripts/publish-azdo-task.sh
  162. +0 −28 scripts/test-azdo.sh
67 changes: 0 additions & 67 deletions .azure-devops/acr_image_purge.sh

This file was deleted.

222 changes: 0 additions & 222 deletions .azure-devops/azure-pipelines.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .devcontainer/Dockerfile

This file was deleted.

Loading