Skip to content

Daily

Daily #2

Workflow file for this run

name: Daily
on:
schedule:
- cron: '0 5 * * *'
workflow_dispatch:
env:
SP_TIME: ''
ARTIFACT: ''
jobs:
linux-daily:
runs-on: self-hosted
timeout-minutes: 60
strategy:
matrix:
build: [ Debug ]
compiler: [ { c: gcc, cpp: g++, fortran: gfortran } ]
avx: [ OFF ]
vtk: [ OFF ]
mkl: [ OFF ]
steps:
- name: Clone
uses: actions/checkout@v4
- name: Golang
uses: actions/setup-go@v5
with:
cache: false
- name: Dependency
run: |
sudo apt-get update && sudo apt-get install libglvnd-dev dpkg-dev xz-utils
- name: Compile
run: |
go build Checker/updater.go
mkdir build && cd build
cmake -DCMAKE_C_COMPILER=${{ matrix.compiler.c }} -DCMAKE_CXX_COMPILER=${{ matrix.compiler.cpp }} -DCMAKE_Fortran_COMPILER=${{ matrix.compiler.fortran }} -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DUSE_AVX2=${{ matrix.avx }} -DBUILD_MULTITHREAD=OFF -DCMAKE_INSTALL_PREFIX=dist ..
make install -j"$(nproc)" && make package
- name: Pack
run: |
cp updater build/dist/bin
echo "ARTIFACT=suanPan-linux-debug-gcc-no-avx-openblas.tar.gz" >> "$GITHUB_ENV"
tar czf ${{ env.ARTIFACT }} -C build/dist .
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT }}
path: ${{ env.ARTIFACT }}
- name: Test
run: |
export LD_LIBRARY_PATH=/home/runner/work/suanPan/suanPan/build/dist/lib
./build/dist/bin/suanPan -v
- name: Upload
uses: Difegue/action-megacmd@master
with:
args: put ${{ env.ARTIFACT }} /suanPan
env:
USERNAME: ${{ secrets.USERNAME }}
PASSWORD: ${{ secrets.PASSWORD }}