feat update woodpecker

This commit is contained in:
tqcq 2024-08-09 22:26:20 +08:00
parent f97021a3be
commit 1591851526
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,13 @@
when:
- event: push
steps:
- name: linux-x64-gcc
image: art.uocat.com/docker/tqcq/cross:v1.0.0
commands:
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTILE_BUILD_BENCHMARKS=ON -DTILE_BUILD_TESTS=ON ..
- cmake --build build -j $(nproc)
- cd build
- ctest --output-on-failure -j $(nproc)

2
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
pipeline { pipeline {
agent { agent {
docker { docker {
image 'art.uocat.com/docker/tqcq/cross:v1.0.1' image 'art.uocat.com/docker/tqcq/cross:v1.0.0'
} }
} }