├── .github ├── CODEOWNERS └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .semaphore ├── release.yml ├── sem-version_bionic.txt ├── sem-version_focal.txt └── semaphore.yml ├── Checkout.psm1 ├── Dockerfile.dev ├── Makefile ├── README.md ├── cache-cli ├── .gitignore ├── .htpasswd ├── Dockerfile.dev ├── Dockerfile.sftp_server ├── Makefile ├── cmd │ ├── clear.go │ ├── clear_test.go │ ├── delete.go │ ├── delete_test.go │ ├── has_key.go │ ├── has_key_test.go │ ├── is_not_empty.go │ ├── is_not_empty_test.go │ ├── list.go │ ├── list_test.go │ ├── restore.go │ ├── restore_test.go │ ├── root.go │ ├── root_test.go │ ├── store.go │ ├── store_test.go │ ├── usage.go │ └── usage_test.go ├── default.conf ├── docker-compose.yml ├── go.mod ├── go.sum ├── id_rsa ├── id_rsa.pub ├── lint.toml ├── main.go ├── nginx.conf ├── pkg │ ├── archive │ │ ├── archiver.go │ │ ├── archiver_test.go │ │ ├── native_archiver.go │ │ └── shell_out_archiver.go │ ├── files │ │ ├── checksum.go │ │ ├── checksum_test.go │ │ ├── download.go │ │ ├── download_test.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── size.go │ │ ├── size_test.go │ │ └── testdata │ │ │ └── test.txt │ ├── logging │ │ └── formatter.go │ ├── metrics │ │ ├── local.go │ │ ├── local_test.go │ │ ├── metrics.go │ │ └── no_op.go │ ├── storage │ │ ├── clear_test.go │ │ ├── delete_test.go │ │ ├── gcs.go │ │ ├── gcs_clear.go │ │ ├── gcs_delete.go │ │ ├── gcs_has_key.go │ │ ├── gcs_is_not_empty.go │ │ ├── gcs_list.go │ │ ├── gcs_restore.go │ │ ├── gcs_store.go │ │ ├── gcs_usage.go │ │ ├── has_key_test.go │ │ ├── is_not_empty_test.go │ │ ├── list_test.go │ │ ├── restore_test.go │ │ ├── s3.go │ │ ├── s3_clear.go │ │ ├── s3_delete.go │ │ ├── s3_has_key.go │ │ ├── s3_is_not_empty.go │ │ ├── s3_list.go │ │ ├── s3_restore.go │ │ ├── s3_store.go │ │ ├── s3_usage.go │ │ ├── sftp.go │ │ ├── sftp_clear.go │ │ ├── sftp_delete.go │ │ ├── sftp_has_key.go │ │ ├── sftp_is_not_empty.go │ │ ├── sftp_list.go │ │ ├── sftp_restore.go │ │ ├── sftp_store.go │ │ ├── sftp_usage.go │ │ ├── storage.go │ │ ├── storage_test.go │ │ ├── store_test.go │ │ └── usage_test.go │ └── utils │ │ └── check.go ├── sshd_config ├── test │ ├── autocache │ │ ├── cocoapods │ │ │ └── Podfile.lock │ │ ├── composer │ │ │ └── composer.lock │ │ ├── elixir │ │ │ └── mix.lock │ │ ├── gems │ │ │ └── Gemfile.lock │ │ ├── go │ │ │ └── go.sum │ │ ├── maven │ │ │ └── pom.xml │ │ ├── multiple-files │ │ │ ├── package-lock.json │ │ │ └── requirements.txt │ │ ├── npm │ │ │ └── package-lock.json │ │ ├── nvm │ │ │ └── .nvmrc │ │ ├── pip │ │ │ └── requirements.txt │ │ └── yarn │ │ │ └── yarn.lock │ └── gcs │ │ └── data │ │ └── semaphore-cache │ │ └── .gitkeep └── wrapper.sh ├── docker-compose.yml ├── enetwork ├── install-package ├── install-self-hosted-toolbox ├── install-self-hosted-toolbox.ps1 ├── install-toolbox ├── libcheckout ├── libchecksum ├── release ├── create.sh ├── install_in_tests.sh └── upload.sh ├── retry ├── scripts ├── run-linter.ps1 └── run-tests.ps1 ├── self-hosted-toolbox ├── sem-context ├── .gitignore ├── Dockerfile.dev ├── Makefile ├── cmd │ ├── delete.go │ ├── get.go │ ├── put.go │ └── root.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── main.go ├── pkg │ ├── flags │ │ └── flags.go │ ├── store │ │ ├── artifacts_store.go │ │ └── store_interface.go │ ├── utils │ │ ├── error_utils.go │ │ └── pipeline_context_utils.go │ └── validators │ │ └── validators.go └── sem-context ├── sem-dockerize ├── sem-install ├── sem-semantic-release ├── sem-service ├── sem-service-check-params ├── sem-version ├── ssh-session-cli ├── system-metrics-collector ├── test-results ├── .gitignore ├── AGENTS.md ├── DOCUMENTATION.md ├── Dockerfile.dev ├── Makefile ├── README.md ├── cmd │ ├── combine.go │ ├── command-metrics.go │ ├── command-metrics_test.go │ ├── compile.go │ ├── gen-pipeline-report.go │ ├── publish.go │ ├── resource-metrics.go │ └── root.go ├── docker-compose.yml ├── docs │ └── id-generation.md ├── go.mod ├── go.sum ├── lint.toml ├── main.go ├── pkg │ ├── cli │ │ ├── cli.go │ │ ├── cli_stats_test.go │ │ └── cli_test.go │ ├── compression │ │ ├── compression.go │ │ └── compression_test.go │ ├── fileloader │ │ ├── fileloader.go │ │ └── fileloader_test.go │ ├── logger │ │ ├── logger.go │ │ └── logger_test.go │ ├── parser │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── parser.go │ │ ├── time.go │ │ ├── types.go │ │ ├── types_test.go │ │ ├── xmlelement.go │ │ └── xmlelement_test.go │ └── parsers │ │ ├── go_revive.go │ │ ├── go_revive_test.go │ │ ├── go_staticcheck.go │ │ ├── go_staticcheck_test.go │ │ ├── helpers.go │ │ ├── id_generation_test.go │ │ ├── junit_embedded.go │ │ ├── junit_embedded_test.go │ │ ├── junit_exunit.go │ │ ├── junit_exunit_test.go │ │ ├── junit_generic.go │ │ ├── junit_generic_test.go │ │ ├── junit_golang.go │ │ ├── junit_golang_test.go │ │ ├── junit_mocha.go │ │ ├── junit_mocha_test.go │ │ ├── junit_phpunit.go │ │ ├── junit_phpunit_test.go │ │ ├── junit_rspec.go │ │ ├── junit_rspec_test.go │ │ ├── parsers.go │ │ └── test_helpers.go ├── priv │ ├── job-metrics │ │ ├── job_log.json │ │ └── system-metrics │ ├── merging │ │ ├── out.json │ │ └── pipeline │ │ │ ├── job1 │ │ │ ├── junit.json │ │ │ └── junit.xml │ │ │ ├── job2 │ │ │ ├── junit.json │ │ │ └── junit.xml │ │ │ └── job3 │ │ │ ├── junit.json │ │ │ └── junit.xml │ ├── parsers │ │ ├── go_revive │ │ │ ├── in.json │ │ │ └── out.json │ │ ├── go_staticcheck │ │ │ ├── in.json │ │ │ └── out.json │ │ ├── junit_embedded │ │ │ ├── in.xml │ │ │ └── out.json │ │ ├── junit_exunit │ │ │ ├── in.xml │ │ │ └── out.json │ │ ├── junit_generic │ │ │ ├── in.xml │ │ │ └── out.json │ │ ├── junit_golang │ │ │ ├── in.xml │ │ │ └── out.json │ │ ├── junit_mocha │ │ │ ├── in.xml │ │ │ └── out.json │ │ ├── junit_phpunit │ │ │ ├── in.xml │ │ │ └── out.json │ │ └── junit_rspec │ │ │ ├── in.xml │ │ │ └── out.json │ └── workflow │ │ └── summary-out.json └── scripts │ └── lcov-to-md.sh ├── tests ├── Checkout.tests.ps1 ├── artifacts.bats ├── compiler.bats ├── compiler │ └── test-repo │ │ └── .semaphore │ │ └── semaphore.yml ├── enetwork.bats ├── install_package.bats ├── libcheckout.bats ├── macOS_sem_version.bats ├── sem-semantic-release.bats ├── sem_service │ ├── cassandra │ ├── elasticsearch │ ├── memcached │ ├── mongodb │ ├── mysql │ ├── opensearch │ ├── postgis │ ├── postgres │ ├── rabbitmq │ ├── redis │ ├── rethinkdb │ └── valkey ├── sem_version_container.bats ├── sem_version_focal │ ├── elixir.bats │ ├── erlang.bats │ ├── firefox.bats │ ├── gcc.bats │ ├── go.bats │ ├── java.bats │ ├── kubectl.bats │ ├── node.bats │ ├── php.bats │ ├── python.bats │ ├── ruby.bats │ └── scala.bats ├── sem_version_jammy │ ├── elixir.bats │ ├── erlang.bats │ ├── gcc.bats │ ├── go.bats │ ├── java.bats │ ├── kubectl.bats │ ├── node.bats │ ├── php.bats │ ├── python.bats │ ├── ruby.bats │ └── scala.bats ├── sem_version_noble │ ├── elixir.bats │ ├── erlang.bats │ ├── gcc.bats │ ├── go.bats │ ├── java.bats │ ├── kubectl.bats │ ├── node.bats │ ├── php.bats │ ├── python.bats │ ├── ruby.bats │ └── scala.bats ├── sftp_server │ ├── Dockerfile │ ├── id_rsa │ ├── id_rsa.pub │ ├── sshd_config │ ├── start_on_docker.sh │ ├── start_on_linux.sh │ └── start_on_mac.sh ├── shm │ ├── shm_docker.bats │ └── shm_ubuntu.bats ├── system_metrics_collector.bats ├── test-results.bats ├── test-results │ ├── golang.xml │ ├── junit-sample.json │ ├── junit-sample.xml │ ├── junit-summary.json │ ├── revive.json │ ├── rspec2.xml │ └── staticcheck.json ├── test_helper └── xcode15_sem_version.bats └── toolbox /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @bogyo210 @lucaspin 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp* 2 | report.xml 3 | **/.vscode/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/.gitmodules -------------------------------------------------------------------------------- /.semaphore/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/.semaphore/release.yml -------------------------------------------------------------------------------- /.semaphore/sem-version_bionic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/.semaphore/sem-version_bionic.txt -------------------------------------------------------------------------------- /.semaphore/sem-version_focal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/.semaphore/sem-version_focal.txt -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /Checkout.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/Checkout.psm1 -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/README.md -------------------------------------------------------------------------------- /cache-cli/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | junit-report.xml 3 | -------------------------------------------------------------------------------- /cache-cli/.htpasswd: -------------------------------------------------------------------------------- 1 | test:$apr1$kCL/ipwt$qOeC2mnzu9dJrmVYw2agO. 2 | -------------------------------------------------------------------------------- /cache-cli/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/Dockerfile.dev -------------------------------------------------------------------------------- /cache-cli/Dockerfile.sftp_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/Dockerfile.sftp_server -------------------------------------------------------------------------------- /cache-cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/Makefile -------------------------------------------------------------------------------- /cache-cli/cmd/clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/clear.go -------------------------------------------------------------------------------- /cache-cli/cmd/clear_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/clear_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/delete.go -------------------------------------------------------------------------------- /cache-cli/cmd/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/delete_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/has_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/has_key.go -------------------------------------------------------------------------------- /cache-cli/cmd/has_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/has_key_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/is_not_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/is_not_empty.go -------------------------------------------------------------------------------- /cache-cli/cmd/is_not_empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/is_not_empty_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/list.go -------------------------------------------------------------------------------- /cache-cli/cmd/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/list_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/restore.go -------------------------------------------------------------------------------- /cache-cli/cmd/restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/restore_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/root.go -------------------------------------------------------------------------------- /cache-cli/cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/root_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/store.go -------------------------------------------------------------------------------- /cache-cli/cmd/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/store_test.go -------------------------------------------------------------------------------- /cache-cli/cmd/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/usage.go -------------------------------------------------------------------------------- /cache-cli/cmd/usage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/cmd/usage_test.go -------------------------------------------------------------------------------- /cache-cli/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/default.conf -------------------------------------------------------------------------------- /cache-cli/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/docker-compose.yml -------------------------------------------------------------------------------- /cache-cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/go.mod -------------------------------------------------------------------------------- /cache-cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/go.sum -------------------------------------------------------------------------------- /cache-cli/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/id_rsa -------------------------------------------------------------------------------- /cache-cli/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/id_rsa.pub -------------------------------------------------------------------------------- /cache-cli/lint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/lint.toml -------------------------------------------------------------------------------- /cache-cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/main.go -------------------------------------------------------------------------------- /cache-cli/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/nginx.conf -------------------------------------------------------------------------------- /cache-cli/pkg/archive/archiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/archive/archiver.go -------------------------------------------------------------------------------- /cache-cli/pkg/archive/archiver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/archive/archiver_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/archive/native_archiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/archive/native_archiver.go -------------------------------------------------------------------------------- /cache-cli/pkg/archive/shell_out_archiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/archive/shell_out_archiver.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/checksum.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/checksum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/checksum_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/download.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/download_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/download_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/lookup.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/lookup_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/size.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/files/size_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/files/testdata/test.txt: -------------------------------------------------------------------------------- 1 | Test 123 -------------------------------------------------------------------------------- /cache-cli/pkg/logging/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/logging/formatter.go -------------------------------------------------------------------------------- /cache-cli/pkg/metrics/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/metrics/local.go -------------------------------------------------------------------------------- /cache-cli/pkg/metrics/local_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/metrics/local_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /cache-cli/pkg/metrics/no_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/metrics/no_op.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/clear_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/clear_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/delete_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_clear.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_delete.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_has_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_has_key.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_is_not_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_is_not_empty.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_list.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_restore.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_store.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/gcs_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/gcs_usage.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/has_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/has_key_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/is_not_empty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/is_not_empty_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/list_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/restore_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_clear.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_delete.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_has_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_has_key.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_is_not_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_is_not_empty.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_list.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_restore.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_store.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/s3_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/s3_usage.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_clear.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_delete.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_has_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_has_key.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_is_not_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_is_not_empty.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_list.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_restore.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_store.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/sftp_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/sftp_usage.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/storage.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/storage_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/store_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/storage/usage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/storage/usage_test.go -------------------------------------------------------------------------------- /cache-cli/pkg/utils/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/pkg/utils/check.go -------------------------------------------------------------------------------- /cache-cli/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/sshd_config -------------------------------------------------------------------------------- /cache-cli/test/autocache/cocoapods/Podfile.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/composer/composer.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/elixir/mix.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/gems/Gemfile.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/go/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/maven/pom.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/multiple-files/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/multiple-files/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/npm/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/nvm/.nvmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/pip/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/autocache/yarn/yarn.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/test/gcs/data/semaphore-cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache-cli/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/cache-cli/wrapper.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /enetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/enetwork -------------------------------------------------------------------------------- /install-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/install-package -------------------------------------------------------------------------------- /install-self-hosted-toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/install-self-hosted-toolbox -------------------------------------------------------------------------------- /install-self-hosted-toolbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/install-self-hosted-toolbox.ps1 -------------------------------------------------------------------------------- /install-toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/install-toolbox -------------------------------------------------------------------------------- /libcheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/libcheckout -------------------------------------------------------------------------------- /libchecksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/libchecksum -------------------------------------------------------------------------------- /release/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/release/create.sh -------------------------------------------------------------------------------- /release/install_in_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/release/install_in_tests.sh -------------------------------------------------------------------------------- /release/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/release/upload.sh -------------------------------------------------------------------------------- /retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/retry -------------------------------------------------------------------------------- /scripts/run-linter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/scripts/run-linter.ps1 -------------------------------------------------------------------------------- /scripts/run-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/scripts/run-tests.ps1 -------------------------------------------------------------------------------- /self-hosted-toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/self-hosted-toolbox -------------------------------------------------------------------------------- /sem-context/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /sem-context/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/Dockerfile.dev -------------------------------------------------------------------------------- /sem-context/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/Makefile -------------------------------------------------------------------------------- /sem-context/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/cmd/delete.go -------------------------------------------------------------------------------- /sem-context/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/cmd/get.go -------------------------------------------------------------------------------- /sem-context/cmd/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/cmd/put.go -------------------------------------------------------------------------------- /sem-context/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/cmd/root.go -------------------------------------------------------------------------------- /sem-context/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/docker-compose.yml -------------------------------------------------------------------------------- /sem-context/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/go.mod -------------------------------------------------------------------------------- /sem-context/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/go.sum -------------------------------------------------------------------------------- /sem-context/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/main.go -------------------------------------------------------------------------------- /sem-context/pkg/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/pkg/flags/flags.go -------------------------------------------------------------------------------- /sem-context/pkg/store/artifacts_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/pkg/store/artifacts_store.go -------------------------------------------------------------------------------- /sem-context/pkg/store/store_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/pkg/store/store_interface.go -------------------------------------------------------------------------------- /sem-context/pkg/utils/error_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/pkg/utils/error_utils.go -------------------------------------------------------------------------------- /sem-context/pkg/utils/pipeline_context_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/pkg/utils/pipeline_context_utils.go -------------------------------------------------------------------------------- /sem-context/pkg/validators/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/pkg/validators/validators.go -------------------------------------------------------------------------------- /sem-context/sem-context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-context/sem-context -------------------------------------------------------------------------------- /sem-dockerize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-dockerize -------------------------------------------------------------------------------- /sem-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-install -------------------------------------------------------------------------------- /sem-semantic-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-semantic-release -------------------------------------------------------------------------------- /sem-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-service -------------------------------------------------------------------------------- /sem-service-check-params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-service-check-params -------------------------------------------------------------------------------- /sem-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/sem-version -------------------------------------------------------------------------------- /ssh-session-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/ssh-session-cli -------------------------------------------------------------------------------- /system-metrics-collector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/system-metrics-collector -------------------------------------------------------------------------------- /test-results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/.gitignore -------------------------------------------------------------------------------- /test-results/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/AGENTS.md -------------------------------------------------------------------------------- /test-results/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/DOCUMENTATION.md -------------------------------------------------------------------------------- /test-results/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/Dockerfile.dev -------------------------------------------------------------------------------- /test-results/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/Makefile -------------------------------------------------------------------------------- /test-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/README.md -------------------------------------------------------------------------------- /test-results/cmd/combine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/combine.go -------------------------------------------------------------------------------- /test-results/cmd/command-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/command-metrics.go -------------------------------------------------------------------------------- /test-results/cmd/command-metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/command-metrics_test.go -------------------------------------------------------------------------------- /test-results/cmd/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/compile.go -------------------------------------------------------------------------------- /test-results/cmd/gen-pipeline-report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/gen-pipeline-report.go -------------------------------------------------------------------------------- /test-results/cmd/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/publish.go -------------------------------------------------------------------------------- /test-results/cmd/resource-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/resource-metrics.go -------------------------------------------------------------------------------- /test-results/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/cmd/root.go -------------------------------------------------------------------------------- /test-results/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/docker-compose.yml -------------------------------------------------------------------------------- /test-results/docs/id-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/docs/id-generation.md -------------------------------------------------------------------------------- /test-results/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/go.mod -------------------------------------------------------------------------------- /test-results/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/go.sum -------------------------------------------------------------------------------- /test-results/lint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/lint.toml -------------------------------------------------------------------------------- /test-results/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/main.go -------------------------------------------------------------------------------- /test-results/pkg/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/cli/cli.go -------------------------------------------------------------------------------- /test-results/pkg/cli/cli_stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/cli/cli_stats_test.go -------------------------------------------------------------------------------- /test-results/pkg/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/cli/cli_test.go -------------------------------------------------------------------------------- /test-results/pkg/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/compression/compression.go -------------------------------------------------------------------------------- /test-results/pkg/compression/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/compression/compression_test.go -------------------------------------------------------------------------------- /test-results/pkg/fileloader/fileloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/fileloader/fileloader.go -------------------------------------------------------------------------------- /test-results/pkg/fileloader/fileloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/fileloader/fileloader_test.go -------------------------------------------------------------------------------- /test-results/pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/logger/logger.go -------------------------------------------------------------------------------- /test-results/pkg/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/logger/logger_test.go -------------------------------------------------------------------------------- /test-results/pkg/parser/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/helpers.go -------------------------------------------------------------------------------- /test-results/pkg/parser/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/helpers_test.go -------------------------------------------------------------------------------- /test-results/pkg/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/parser.go -------------------------------------------------------------------------------- /test-results/pkg/parser/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/time.go -------------------------------------------------------------------------------- /test-results/pkg/parser/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/types.go -------------------------------------------------------------------------------- /test-results/pkg/parser/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/types_test.go -------------------------------------------------------------------------------- /test-results/pkg/parser/xmlelement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/xmlelement.go -------------------------------------------------------------------------------- /test-results/pkg/parser/xmlelement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parser/xmlelement_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/go_revive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/go_revive.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/go_revive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/go_revive_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/go_staticcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/go_staticcheck.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/go_staticcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/go_staticcheck_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/helpers.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/id_generation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/id_generation_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_embedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_embedded.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_embedded_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_embedded_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_exunit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_exunit.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_exunit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_exunit_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_generic.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_generic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_generic_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_golang.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_golang_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_golang_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_mocha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_mocha.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_mocha_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_mocha_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_phpunit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_phpunit.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_phpunit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_phpunit_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_rspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_rspec.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/junit_rspec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/junit_rspec_test.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/parsers.go -------------------------------------------------------------------------------- /test-results/pkg/parsers/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/pkg/parsers/test_helpers.go -------------------------------------------------------------------------------- /test-results/priv/job-metrics/job_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/job-metrics/job_log.json -------------------------------------------------------------------------------- /test-results/priv/job-metrics/system-metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/job-metrics/system-metrics -------------------------------------------------------------------------------- /test-results/priv/merging/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/out.json -------------------------------------------------------------------------------- /test-results/priv/merging/pipeline/job1/junit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/pipeline/job1/junit.json -------------------------------------------------------------------------------- /test-results/priv/merging/pipeline/job1/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/pipeline/job1/junit.xml -------------------------------------------------------------------------------- /test-results/priv/merging/pipeline/job2/junit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/pipeline/job2/junit.json -------------------------------------------------------------------------------- /test-results/priv/merging/pipeline/job2/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/pipeline/job2/junit.xml -------------------------------------------------------------------------------- /test-results/priv/merging/pipeline/job3/junit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/pipeline/job3/junit.json -------------------------------------------------------------------------------- /test-results/priv/merging/pipeline/job3/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/merging/pipeline/job3/junit.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/go_revive/in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/go_revive/in.json -------------------------------------------------------------------------------- /test-results/priv/parsers/go_revive/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/go_revive/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/go_staticcheck/in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/go_staticcheck/in.json -------------------------------------------------------------------------------- /test-results/priv/parsers/go_staticcheck/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/go_staticcheck/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_embedded/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_embedded/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_embedded/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_embedded/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_exunit/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_exunit/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_exunit/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_exunit/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_generic/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_generic/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_generic/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_generic/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_golang/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_golang/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_golang/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_golang/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_mocha/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_mocha/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_mocha/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_mocha/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_phpunit/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_phpunit/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_phpunit/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_phpunit/out.json -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_rspec/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_rspec/in.xml -------------------------------------------------------------------------------- /test-results/priv/parsers/junit_rspec/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/parsers/junit_rspec/out.json -------------------------------------------------------------------------------- /test-results/priv/workflow/summary-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/priv/workflow/summary-out.json -------------------------------------------------------------------------------- /test-results/scripts/lcov-to-md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/test-results/scripts/lcov-to-md.sh -------------------------------------------------------------------------------- /tests/Checkout.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/Checkout.tests.ps1 -------------------------------------------------------------------------------- /tests/artifacts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/artifacts.bats -------------------------------------------------------------------------------- /tests/compiler.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/compiler.bats -------------------------------------------------------------------------------- /tests/compiler/test-repo/.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/compiler/test-repo/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /tests/enetwork.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/enetwork.bats -------------------------------------------------------------------------------- /tests/install_package.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/install_package.bats -------------------------------------------------------------------------------- /tests/libcheckout.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/libcheckout.bats -------------------------------------------------------------------------------- /tests/macOS_sem_version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/macOS_sem_version.bats -------------------------------------------------------------------------------- /tests/sem-semantic-release.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem-semantic-release.bats -------------------------------------------------------------------------------- /tests/sem_service/cassandra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/cassandra -------------------------------------------------------------------------------- /tests/sem_service/elasticsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/elasticsearch -------------------------------------------------------------------------------- /tests/sem_service/memcached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/memcached -------------------------------------------------------------------------------- /tests/sem_service/mongodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/mongodb -------------------------------------------------------------------------------- /tests/sem_service/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/mysql -------------------------------------------------------------------------------- /tests/sem_service/opensearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/opensearch -------------------------------------------------------------------------------- /tests/sem_service/postgis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/postgis -------------------------------------------------------------------------------- /tests/sem_service/postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/postgres -------------------------------------------------------------------------------- /tests/sem_service/rabbitmq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/rabbitmq -------------------------------------------------------------------------------- /tests/sem_service/redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/redis -------------------------------------------------------------------------------- /tests/sem_service/rethinkdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/rethinkdb -------------------------------------------------------------------------------- /tests/sem_service/valkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_service/valkey -------------------------------------------------------------------------------- /tests/sem_version_container.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_container.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/elixir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/elixir.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/erlang.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/erlang.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/firefox.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/firefox.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/gcc.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/gcc.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/go.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/go.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/java.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/java.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/kubectl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/kubectl.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/node.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/node.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/php.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/php.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/python.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/python.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/ruby.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/ruby.bats -------------------------------------------------------------------------------- /tests/sem_version_focal/scala.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_focal/scala.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/elixir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/elixir.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/erlang.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/erlang.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/gcc.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/gcc.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/go.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/go.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/java.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/java.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/kubectl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/kubectl.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/node.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/node.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/php.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/php.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/python.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/python.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/ruby.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/ruby.bats -------------------------------------------------------------------------------- /tests/sem_version_jammy/scala.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_jammy/scala.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/elixir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/elixir.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/erlang.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/erlang.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/gcc.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/gcc.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/go.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/go.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/java.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/java.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/kubectl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/kubectl.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/node.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/node.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/php.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/php.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/python.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/python.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/ruby.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/ruby.bats -------------------------------------------------------------------------------- /tests/sem_version_noble/scala.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sem_version_noble/scala.bats -------------------------------------------------------------------------------- /tests/sftp_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/Dockerfile -------------------------------------------------------------------------------- /tests/sftp_server/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/id_rsa -------------------------------------------------------------------------------- /tests/sftp_server/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/id_rsa.pub -------------------------------------------------------------------------------- /tests/sftp_server/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/sshd_config -------------------------------------------------------------------------------- /tests/sftp_server/start_on_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/start_on_docker.sh -------------------------------------------------------------------------------- /tests/sftp_server/start_on_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/start_on_linux.sh -------------------------------------------------------------------------------- /tests/sftp_server/start_on_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/sftp_server/start_on_mac.sh -------------------------------------------------------------------------------- /tests/shm/shm_docker.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/shm/shm_docker.bats -------------------------------------------------------------------------------- /tests/shm/shm_ubuntu.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/shm/shm_ubuntu.bats -------------------------------------------------------------------------------- /tests/system_metrics_collector.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/system_metrics_collector.bats -------------------------------------------------------------------------------- /tests/test-results.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results.bats -------------------------------------------------------------------------------- /tests/test-results/golang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/golang.xml -------------------------------------------------------------------------------- /tests/test-results/junit-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/junit-sample.json -------------------------------------------------------------------------------- /tests/test-results/junit-sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/junit-sample.xml -------------------------------------------------------------------------------- /tests/test-results/junit-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/junit-summary.json -------------------------------------------------------------------------------- /tests/test-results/revive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/revive.json -------------------------------------------------------------------------------- /tests/test-results/rspec2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/rspec2.xml -------------------------------------------------------------------------------- /tests/test-results/staticcheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/test-results/staticcheck.json -------------------------------------------------------------------------------- /tests/test_helper: -------------------------------------------------------------------------------- 1 | load "../ 2 | -------------------------------------------------------------------------------- /tests/xcode15_sem_version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/tests/xcode15_sem_version.bats -------------------------------------------------------------------------------- /toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreci/toolbox/HEAD/toolbox --------------------------------------------------------------------------------