Skip to content

Commit

Permalink
moving to github
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Gadorek committed Jun 25, 2024
1 parent 59f5fc7 commit d47d2bc
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 235 deletions.
85 changes: 85 additions & 0 deletions .github/workflows/build_rust.yaml
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
233 changes: 0 additions & 233 deletions .gitlab-ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
tokio = {version = "1.37.0", features=["full"]}
idf-im-lib = { git = "ssh://git@gitlab.espressif.cn:27227/idf/idf-im-lib.git", branch="master" }
idf-im-lib = { git = "ssh://git@github.com/espressif/idf-im-lib.git", branch="master" }
clap = {version = "4.5", features = ["cargo", "derive"]}
ratatui = "0.26.3"
crossterm = "0.27.0"
Expand Down

0 comments on commit d47d2bc

Please sign in to comment.