本文探討持續整合 (CI) 的概念、優點、缺點以及一個示範範例。
首先,我們先簡單回顧一下歷史。
1999年,Kent Beck在第一本關於極限編程的著作中深入探討了這個主題。 2001年,首批開源CI工具之一CruiseControl誕生。
CI 的目標是在每次提交程式碼後執行自動化測試。這確保程式碼始終保持功能正常。我們稱之為持續集成,因為每次修改程式碼後都會對其進行驗證,以確保沒有出現回歸問題。
檔案進行設定。 .gitlab-ci.yml
<code>image: alpine:latest myjobname: script: - make</code>
<code>myjobname_hard: script: - CFLAGS="-Wall -Werror" make # 或者 - make compile_flags</code>
<code>before_script: - apt-get update && apt-get install -y libcriterion-dev script: - ./configure - make test</code>
<code>stages: - build - test build: stage: build script: - make all test-unit: stage: test script: - make unit-test test-functional: stage: test script: - make functional-test</code>
<code>image: alpine:latest myjobname: script: - make</code>
在某些情況下,快取檔案或資料夾以避免每次管線都重新載入它們非常有用。
一個常見的例子是JavaScript中的node_modules/
資料夾。
<code>myjobname_hard: script: - CFLAGS="-Wall -Werror" make # 或者 - make compile_flags</code>
當然,您可以根據需要使用管線配置中的附加選項來清除快取。
工件是CI產生的可以跨作業共享或下載的檔案。
例如,測試或覆蓋率報告。
<code>before_script: - apt-get update && apt-get install -y libcriterion-dev script: - ./configure - make test</code>
可以透過在CI管線中整合gcovr或Cobertura等工具來衡量測試覆蓋率。
<code>stages: - build - test build: stage: build script: - make all test-unit: stage: test script: - make unit-test test-functional: stage: test script: - make functional-test</code>
此程式碼區塊可讓您將覆蓋率報告整合到您的合併請求中,以便您可以查看未覆蓋的程式碼以及覆蓋率百分比。
<code>clang_format: stage: format before_script: - apt-get -qq update && apt-get -qq install -y clang-format autotools-dev autoconf-archive gcovr libcriterion-dev script: - clang-format -i $(find src/ -type f -name "*.c") --dry-run --Werror</code>
您可以透過選擇特定的Docker映像來指定CI的基本環境。
<code>cache: paths: - node_modules/ install: script: - npm install</code>
結合以上內容,可以得到如下範例:
<code>artifacts: paths: - build/ - reports/</code>
注意
.h
文件,且缺少before_script
。
也可以檢查垃圾文件,以確保make clean
能夠正常運作。
<code>test-coverage: stage: test script: - gcovr --html --html-details -o coverage.html artifacts: paths: - coverage.html</code>
持續整合是一個極為強大的工具。雖然設置起來可能比較困難,但其收益是巨大的。
以上是測驗是作弊,編譯是懷疑的詳細內容。更多資訊請關注PHP中文網其他相關文章!