Skip to content

Commit

Permalink
maybe
Browse files Browse the repository at this point in the history
Signed-off-by: swurl <swurl@swurl.xyz>
  • Loading branch information
crueter committed Jan 9, 2024
1 parent 7bc5142 commit 8979a72
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ jobs:
run: |
git submodule update --init --recursive
declare QTPATH="${{ github.workspace }}/../Qt/${{ matrix.qt_version }}/${{ matrix.qt_arch }}"
echo $QTPATH
ls $QTPATH
cmake -S . -B ${{ env.BUILD_DIR }} -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=${{ inputs.build_type }} -G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/g++-10 -DQT_HOST_PATH="$QTPATH"
cmake -S . -B ${{ env.BUILD_DIR }} -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=${{ inputs.build_type }} -G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/g++-10 -DQT_HOST_PATH="$QTPATH" -DQT_FORCE_FIND_TOOLS=ON
cmake --build ${{ env.BUILD_DIR }} --parallel $(nproc)
- name: Configure and Build (Windows)
Expand Down Expand Up @@ -161,14 +163,13 @@ jobs:
##
# UPLOAD BUILDS
##


#
- name: Upload WASM (Linux)
if: runner.os == 'Linux' && matrix.qt_arch == 'wasm_singlethread'
uses: actions/upload-artifact@v3
with:
name: QFRCScouter-WASM-${{ runner.os }}-Binary-${{ env.VERSION }}-${{ inputs.build_type }}
path: QFRCScouter-WASM.tar.gz
path: ${{ BUILD_DIR }}/*.js ${{ BUILD_DIR }}/*.wasm ${{ BUILD_DIR}}/*.svg ${{ BUILD_DIR }}/*.html

- name: Upload portable tarball (Linux)
if: runner.os == 'Linux' && matrix.qt_arch == 'gcc_64'
Expand Down

0 comments on commit 8979a72

Please sign in to comment.