From e8f922a1b874b110781dfb3d23d03d41ddb6666b Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sun, 22 May 2022 15:40:54 +0900 Subject: [PATCH] chore: use the latest release of toml-test on CI The CI task that corresponds to toml-test HEAD is currently failing. Using the latest stable release is safer. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d338652..43d75ee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: cd tests/ g++ -std=c++11 -O2 -Wall -Wextra -Werror -I../ check_toml_test.cpp -o check_toml_test export PATH=$(pwd):${PATH} - git clone https://github.com/BurntSushi/toml-test.git + git clone --depth 1 --branch v1.1.0 https://github.com/BurntSushi/toml-test.git cd toml-test/ go install -v ./cmd/toml-test cd -