Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ rustflags = ["-C", "link-arg=-mmacosx-version-min=10.13"]

[target.aarch64-apple-darwin]
rustflags = ["-C", "link-arg=-mmacosx-version-min=10.13"]

[build]
rustc-wrapper = "./.cargo/rustc-wrapper.sh"
57 changes: 0 additions & 57 deletions .cargo/rustc-wrapper.sh

This file was deleted.

13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,23 @@ jobs:
sudo apt-get update
sudo apt-get install -y mingw-w64 nasm

- name: Build
shell: bash
- name: Build binaries (Linux cross-compile)
if: matrix.arch != 'arm64'
run: |
cargo build --bins --workspace --release --target ${{ matrix.target }}
mkdir -p dist
cp target/${{ matrix.target }}/release/plumeimpactor.exe dist/Impactor-windows-${{ matrix.arch }}-portable.exe
cp target/${{ matrix.target }}/release/plumesign.exe dist/plumesign-windows-${{ matrix.arch }}.exe

- name: Build binaries (Windows ARM64 native)
if: matrix.arch == 'arm64'
shell: pwsh
run: |
cargo build --bins --workspace --release --target ${{ matrix.target }}
New-Item -ItemType Directory -Force -Path dist
Copy-Item "target/${{ matrix.target }}/release/plumeimpactor.exe" "dist/Impactor-windows-${{ matrix.arch }}-portable.exe"
Copy-Item "target/${{ matrix.target }}/release/plumesign.exe" "dist/plumesign-windows-${{ matrix.arch }}.exe"

- name: Upload Bundles
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/shared-modules
/.direnv

*.exe
*.DS_Store
state.plist
.zsign_cache
Expand Down
1 change: 1 addition & 0 deletions 3rdparty/apple-codesign-0.29.0/.cargo-ok
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"v":1}
6 changes: 6 additions & 0 deletions 3rdparty/apple-codesign-0.29.0/.cargo_vcs_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"git": {
"sha1": "2312b1e5bd77322c019613e0ca624e222c6c6e08"
},
"path_in_vcs": "apple-codesign"
}
Loading
Loading