mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
minor update
This commit is contained in:
parent
0e15f69838
commit
35f561b0e9
1 changed files with 4 additions and 3 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -85,12 +85,13 @@ jobs:
|
|||
../configure --tooldir=$TOOLDIR --xlen=${{ matrix.xlen }}
|
||||
source ci/toolchain_env.sh
|
||||
make build -s > /dev/null
|
||||
cp -rf $GITHUB_WORKSPACE/build${{ matrix.xlen }} $HOME;
|
||||
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: build-${{ matrix.xlen }}
|
||||
path: $GITHUB_WORKSPACE/build${{ matrix.xlen }}
|
||||
path: $HOME/build${{ matrix.xlen }}
|
||||
|
||||
tests:
|
||||
runs-on: ubuntu-20.04
|
||||
|
@ -110,13 +111,13 @@ jobs:
|
|||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: build-${{ matrix.xlen }}
|
||||
path: $GITHUB_WORKSPACE/build${{ matrix.xlen }}
|
||||
path: $HOME/build${{ matrix.xlen }}
|
||||
|
||||
- name: Setup build environment
|
||||
run: |
|
||||
TOOLDIR=$HOME/tools
|
||||
cp -rf $HOME/third_party $GITHUB_WORKSPACE
|
||||
cd $GITHUB_WORKSPACE/build${{ matrix.xlen }}
|
||||
cd $HOME/build${{ matrix.xlen }}
|
||||
source ci/toolchain_env.sh
|
||||
|
||||
- name: Run tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue