Improve CI task order
This commit is contained in:
parent
4ae52a743e
commit
1275d57b97
|
@ -57,11 +57,6 @@ jobs:
|
||||||
cd build
|
cd build
|
||||||
cmake ${{ matrix.cmakeOptions }} ..
|
cmake ${{ matrix.cmakeOptions }} ..
|
||||||
cmake --build . --config Release --target package
|
cmake --build . --config Release --target package
|
||||||
- name: Upload artifacts
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: binaries
|
|
||||||
path: build/*.zip
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -70,6 +65,11 @@ jobs:
|
||||||
else
|
else
|
||||||
./build/rhubarb/runTests
|
./build/rhubarb/runTests
|
||||||
fi
|
fi
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: binaries
|
||||||
|
path: build/*.zip
|
||||||
release:
|
release:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue