From 2bc60141fafb0600ed9f554e7c9b21da52e2a1a1 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Fri, 25 Aug 2023 15:50:34 -0700 Subject: [PATCH] Remove build steps for SDK --- .github/workflows/nightly.yml | 39 ----------------------------------- 1 file changed, 39 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 11831b9..6f4f6ba 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -36,13 +36,11 @@ jobs: - name: Log new version & changelog run: | - echo "Latest tag detected: $LATEST_TAG" echo "Proposed new version: $VERSION" echo "Nightly version: $NIGHTLY_VERSION" env: VERSION: ${{ steps.set-version.outputs.version }} NIGHTLY_VERSION: ${{ steps.set-nightly-version.outputs.version }} - LATEST_TAG: ${{ steps.get-latest-tag.outputs.tag }} - name: Bump crate versions run: | @@ -73,40 +71,3 @@ jobs: commit_user_name: Adobe CAI Team commit_user_email: noreply@adobe.com create_branch: true - - # # make this into build step - # tests: - # name: Unit tests - # runs-on: ${{ matrix.os }} - - # strategy: - # fail-fast: false - # matrix: - # os: [windows-latest, macos-latest, ubuntu-latest] - # rust_version: [stable, 1.70.0] - - # steps: - # - name: Checkout repository - # uses: actions/checkout@v3 - - # - name: Install Rust toolchain - # uses: dtolnay/rust-toolchain@master - # with: - # toolchain: ${{ matrix.rust_version }} - # components: llvm-tools-preview - - # - name: Cache Rust dependencies - # uses: Swatinem/rust-cache@v1 - - # - name: Install cargo-llvm-cov - # uses: taiki-e/install-action@cargo-llvm-cov - - # - name: Generate code coverage - # run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - - # - name: Upload code coverage results - # uses: codecov/codecov-action@v3 - # with: - # token: ${{ secrets.CODECOV_TOKEN }} - # fail_ci_if_error: true - # verbose: true