diff --git a/.gitea/workflows/buildapps.yaml b/.gitea/workflows/buildapps.yaml index 7a0c21d..364d96a 100644 --- a/.gitea/workflows/buildapps.yaml +++ b/.gitea/workflows/buildapps.yaml @@ -21,12 +21,12 @@ jobs: run: | apt-get update apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev - - name: Rust setup - uses: dtolnay/rust-toolchain@stable - name: Install windows cross-compiling deps run: apt install -y nsis lld llvm - - name: And allow rust to work with them + - name: Install rust and allow it to work with the crosscompiler stuff. + # has to be done all together because of https://github.com/rust-lang/rustup/issues/1239 run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh rustup target add x86_64-pc-windows-msvc cargo install xwin xwin --accept-license --disable-symlinks splat --output ~/.xwin @@ -44,7 +44,6 @@ jobs: uses: actions/checkout@v3 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} + - name: Try building all the apps + run: bash buildall.sh - run: echo "🍏 This job's status is ${{ job.status }}."