[deps]: Update Rust crate serde to v1.0.215 #246
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
name: Build Ruby | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Ruby | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0 # v1.197.0 | |
with: | |
ruby-version: 3.2 | |
- name: Download artifacts | |
uses: bitwarden/gh-actions/download-artifacts@main | |
with: | |
workflow: generate_schemas.yml | |
path: languages/ruby/bitwarden_sdk_secrets/lib | |
workflow_conclusion: success | |
branch: ${{ github.ref_name }} | |
artifacts: schemas.rb | |
- name: Download x86_64-apple-darwin artifact | |
uses: bitwarden/gh-actions/download-artifacts@main | |
with: | |
workflow: build-rust-cross-platform.yml | |
path: temp/macos-x64 | |
workflow_conclusion: success | |
branch: ${{ github.ref_name }} | |
artifacts: libbitwarden_c_files-x86_64-apple-darwin | |
- name: Download aarch64-apple-darwin artifact | |
uses: bitwarden/gh-actions/download-artifacts@main | |
with: | |
workflow: build-rust-cross-platform.yml | |
workflow_conclusion: success | |
branch: ${{ github.ref_name }} | |
artifacts: libbitwarden_c_files-aarch64-apple-darwin | |
path: temp/macos-arm64 | |
- name: Download x86_64-unknown-linux-gnu artifact | |
uses: bitwarden/gh-actions/download-artifacts@main | |
with: | |
workflow: build-rust-cross-platform.yml | |
workflow_conclusion: success | |
branch: ${{ github.ref_name }} | |
artifacts: libbitwarden_c_files-x86_64-unknown-linux-gnu | |
path: temp/linux-x64 | |
- name: Download x86_64-pc-windows-msvc artifact | |
uses: bitwarden/gh-actions/download-artifacts@main | |
with: | |
workflow: build-rust-cross-platform.yml | |
workflow_conclusion: success | |
branch: ${{ github.ref_name }} | |
artifacts: libbitwarden_c_files-x86_64-pc-windows-msvc | |
path: temp/windows-x64 | |
- name: Copy lib files | |
run: | | |
mkdir -p languages/ruby/bitwarden_sdk_secrets/lib/macos-arm64 | |
mkdir -p languages/ruby/bitwarden_sdk_secrets/lib/linux-x64 | |
mkdir -p languages/ruby/bitwarden_sdk_secrets/lib/macos-x64 | |
mkdir -p languages/ruby/bitwarden_sdk_secrets/lib/windows-x64 | |
platforms=("macos-arm64" "linux-x64" "macos-x64" "windows-x64") | |
files=("libbitwarden_c.dylib" "libbitwarden_c.so" "libbitwarden_c.dylib" "bitwarden_c.dll") | |
for ((i=0; i<${#platforms[@]}; i++)); do | |
cp "temp/${platforms[$i]}/${files[$i]}" "languages/ruby/bitwarden_sdk_secrets/lib/${platforms[$i]}/${files[$i]}" | |
done | |
- name: bundle install | |
run: bundle install | |
working-directory: languages/ruby/bitwarden_sdk_secrets | |
- name: Build gem | |
run: gem build bitwarden-sdk-secrets.gemspec | |
working-directory: languages/ruby/bitwarden_sdk_secrets | |
- name: Upload artifact | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
path: bitwarden-sdk-secrets-*.gem | |
name: bitwarden-sdk-secrets |