diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 509605d..d1fb341 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -107,7 +107,6 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json - RUSTFLAGS: ${{ join(matrix.targets, '-') == 'x86_64-pc-windows-msvc' && '-Clink-arg=/WX' || '' }} steps: - name: enable windows longpaths run: | @@ -139,8 +138,6 @@ jobs: run: | cd ui npm run build - - name: Install NASM - uses: ilammy/setup-nasm@v1 - name: Build artifacts run: | # Actually do builds and make zips and whatnot diff --git a/Cargo.toml b/Cargo.toml index 0df8190..bd2e4a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ ci = "github" # The installers to generate for each app installers = ["shell", "powershell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] # Whether to install an updater program install-updater = true # Skip checking whether the specified configuration files are up to date