Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

resolve cargo publish #259

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 21 additions & 20 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,28 @@ jobs:
name: Cargo.lock
path: Cargo.lock

intense-tests:
needs: generate-lockfile-and-audit
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
with:
version: "0.36.13"

- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ env.BRANCH }}

- name: Test with release
run: cargo make --profile github-actions test
# intense-tests:
# needs: generate-lockfile-and-audit
# strategy:
# matrix:
# os: [ubuntu-latest, macos-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - name: Install cargo make
# uses: davidB/rust-cargo-make@v1
# with:
# version: "0.36.13"
#
# - name: Checkout
# uses: actions/checkout@v3
# with:
# ref: ${{ env.BRANCH }}
#
# - name: Test with release
# run: cargo make --profile github-actions test

publish:
needs: intense-tests
#needs: intense-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -73,6 +73,7 @@ jobs:
publish-delay: 1000 # Wait 1 second between publishing dependencies.
ignore-unpublished-changes: true
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
no-verify: true

devenv:
timeout-minutes: 120
Expand Down
Loading
Loading