From 03ab28e60ceea4b7f07ec361c9986ffa40a36d2c Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Fri, 7 Jan 2022 14:50:03 -0800 Subject: [PATCH 1/2] TEST --- .github/workflows/ci-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 0fa98d1276..cf54a2f0ac 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -2,7 +2,7 @@ name: ci-test on: push: - branches: [auto, canary, gha-test-*] + branches: [auto, canary, gha-test-*, main] pull_request: branches: [main, release-*, gha-test-*] @@ -121,7 +121,7 @@ jobs: runs-on: ubuntu-20.04-xl timeout-minutes: 60 needs: prepare - if: ${{ needs.prepare.outputs.test-rust == 'true' }} + # if: ${{ needs.prepare.outputs.test-rust == 'true' }} container: image: ghcr.io/diem/diem_build_environment:${{ needs.prepare.outputs.changes-target-branch }} volumes: @@ -137,7 +137,7 @@ jobs: key: ${{ needs.prepare.outputs.changes-target-branch }} - name: run unit tests run: | - $pre_command && cargo nextest --nextest-profile ci --jobs ${max_threads} --test-threads ${max_threads} --changed-since "origin/$TARGET_BRANCH" + $pre_command && cargo nextest --nextest-profile ci --jobs ${max_threads} --test-threads ${max_threads} #--changed-since "origin/$TARGET_BRANCH" env: TARGET_BRANCH: ${{ needs.prepare.outputs.changes-target-branch }} - name: run doctests From e6d8f889428621d35486a888ef9a990fbaebbd42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Jan 2022 22:58:57 +0000 Subject: [PATCH 2/2] Bump actions/cache from 2.1.6 to 2.1.7 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-test.yml | 4 ++-- .github/workflows/daily.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index cf54a2f0ac..92b5e225fd 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -177,7 +177,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v2.1.7 with: path: "/opt/cargo/git\n/opt/cargo/registry\n/opt/cargo/.package-cache" key: crates-${{ runner.os }}-${{ hashFiles('Cargo.lock') }} @@ -204,7 +204,7 @@ jobs: - uses: actions/checkout@v2.4.0 with: ref: ${{ github.event.pull_request.head.sha }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v2.1.7 with: path: "/opt/cargo/git\n/opt/cargo/registry\n/opt/cargo/.package-cache" key: crates-${{ runner.os }}-${{ hashFiles('Cargo.lock') }} diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 87be9b1fb2..df2a9ac34a 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -72,7 +72,7 @@ jobs: with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v2.1.7 with: path: "/opt/cargo/git\n/opt/cargo/registry\n/opt/cargo/.package-cache" key: crates-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}