-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Petr Gadorek
committed
Jun 25, 2024
1 parent
59f5fc7
commit d47d2bc
Showing
4 changed files
with
87 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Build for multiple platforms | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest, macos-12] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Install OpenSSL (Windows) | ||
if: runner.os == 'Windows' | ||
shell: powershell | ||
run: | | ||
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append | ||
vcpkg install openssl:x64-windows-static-md | ||
- name: Install OpenSSL (Macos) | ||
if: matrix.os == 'macos-latest' | ||
run: brew install openssl | ||
|
||
- name: Cache cargo registry | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/registry | ||
key: ${{ runner.os }}-cargo-registry | ||
restore-keys: | | ||
${{ runner.os }}-cargo-registry | ||
- name: Cache cargo index | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/git | ||
key: ${{ runner.os }}-cargo-index | ||
restore-keys: | | ||
${{ runner.os }}-cargo-index | ||
- name: Build | ||
run: cargo build --release | ||
|
||
# - name: Run tests | ||
# run: cargo test --release | ||
|
||
- name: Create release directory | ||
run: mkdir -p release | ||
|
||
- name: Copy binary to release directory Windows | ||
if: matrix.os == 'windows-latest' | ||
run: cp target/release/idf-im-cli.exe release/idf-im-cli-${{ matrix.os }}.exe | ||
|
||
- name: Copy binary to release directory POSIX | ||
if: matrix.os != 'windows-latest' | ||
run: cp target/release/idf-im-cli release/idf-im-cli-${{ matrix.os }} | ||
|
||
- name: Upload build artifacts for POSIX | ||
uses: actions/upload-artifact@v4 | ||
if: matrix.os != 'windows-latest' | ||
with: | ||
name: idf-im-cli-${{ matrix.os }} | ||
path: release/idf-im-cli-${{ matrix.os }} | ||
|
||
- name: Upload build artifacts for Windows | ||
uses: actions/upload-artifact@v4 | ||
if: matrix.os == 'windows-latest' | ||
with: | ||
name: idf-im-cli-${{ matrix.os }}.exe | ||
path: release/idf-im-cli-${{ matrix.os }}.exe |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters