Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lihuiba committed May 29, 2024
1 parent c1605c8 commit 23565c5
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.linux.compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
cmake --build build -j $(nproc) --clean-first -- VERBOSE=1
cd build/output
rm -f *.a
for f in gtest gmock gflags libfuse libgsasl; do
for f in gtest gmock gflags libfuse; do
ln -s `ldd test-curl | grep $f | awk '{print $3}'` .
done
tar -c -h --use-compress-program=zstdmt -f ../../output850.tzs .
Expand All @@ -47,17 +47,21 @@ jobs:
test850:
needs: gcc850
runs-on: ubuntu-latest
container:
image: ghcr.io/coldwings/photon-ut-base:latest
options: --cpus 4
steps:
- name: download850
uses: actions/download-artifact@v4
- uses: szenius/[email protected]
with:
timezoneLinux: "Asia/Shanghai"
timezoneMacos: "Asia/Shanghai"
timezoneWindows: "China Standard Time"
- uses: actions/download-artifact@v4
with:
name: output850
- name: test
run: |
tar -x --use-compress-program=zstdmt -f output850.tzs
ls -R
sudo apt-get update
sudo apt-get install gsasl
ctest --timeout 3600 -V
gcc921:
Expand Down

0 comments on commit 23565c5

Please sign in to comment.