Merge pull request #129 from trydirect/copilot/add-cloud-provider-sel… #394
This file contains hidden or 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: Rust | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ dev, main ] | |
| pull_request: | |
| branches: [ dev, main ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: Build binaries (Linux/macOS) | |
| env: | |
| SQLX_OFFLINE: true | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| artifact_name: stacker-linux-x86_64 | |
| - os: macos-latest | |
| target: x86_64-apple-darwin | |
| artifact_name: stacker-macos-x86_64 | |
| - os: macos-latest | |
| target: aarch64-apple-darwin | |
| artifact_name: stacker-macos-aarch64 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Verify .sqlx cache exists | |
| run: | | |
| ls -lh .sqlx/ || echo ".sqlx directory not found" | |
| find .sqlx -type f 2>/dev/null | wc -l | |
| - name: Install Rust toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| target: ${{ matrix.target }} | |
| override: true | |
| - name: Cache cargo registry | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo/registry | |
| key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo-registry- | |
| - name: Cache cargo index | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo/git | |
| key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo-index- | |
| - name: Cache target directory | |
| uses: actions/cache@v4 | |
| with: | |
| path: target | |
| key: ${{ runner.os }}-target-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-target-${{ matrix.target }}- | |
| - name: Build server (release) | |
| run: cargo build --release --target ${{ matrix.target }} --bin server --verbose | |
| - name: Build console (release with features) | |
| run: cargo build --release --target ${{ matrix.target }} --bin console --features explain --verbose | |
| - name: Build stacker-cli (release) | |
| run: cargo build --release --target ${{ matrix.target }} --bin stacker-cli --verbose | |
| - name: Prepare binaries | |
| run: | | |
| mkdir -p artifacts | |
| cp target/${{ matrix.target }}/release/server artifacts/server | |
| cp target/${{ matrix.target }}/release/console artifacts/console | |
| cp target/${{ matrix.target }}/release/stacker-cli artifacts/stacker-cli | |
| tar -czf ${{ matrix.artifact_name }}.tar.gz -C artifacts . | |
| - name: Upload binaries | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.artifact_name }} | |
| path: ${{ matrix.artifact_name }}.tar.gz | |
| retention-days: 7 |