accept labels or node names npzed tensors #3271
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: Unix build and tests | |
on: | |
pull_request: | |
schedule: | |
- cron: '0 3 * * *' | |
env: | |
CARGO_INCREMENTAL: false | |
jobs: | |
unix: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macOS-latest ] | |
rust: [ 1.75.0 ] | |
fail-fast: false | |
runs-on: ${{matrix.os}} | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
RUST_VERSION: ${{matrix.rust}} | |
RUST_BACKTRACE: full | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
continue-on-error: true | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::567805100031:role/github-runner-tract-ci | |
aws-region: us-east-2 | |
- name: Get current date | |
id: date | |
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.rustup | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
.cached | |
key: ${{ runner.os }}-main-${{matrix.rust}}-${{steps.date.outputs.date}}-d | |
- name: Native script | |
run: .travis/regular-tests.sh | |
env: | |
SHORT: yes |