From 3f70cc8b89178c91c72e54f55b349aef555ec14f Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Fri, 3 Jul 2020 20:42:10 +1000 Subject: [PATCH] Fix benchmark workflow; use latest Rust version for builds --- .github/workflows/bench.yaml | 3 +-- .github/workflows/cli.yml | 2 +- .github/workflows/java.yml | 2 +- .github/workflows/nodejs.yml | 2 +- .github/workflows/ruby.yml | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bench.yaml b/.github/workflows/bench.yaml index 40ebc3f..79206e1 100644 --- a/.github/workflows/bench.yaml +++ b/.github/workflows/bench.yaml @@ -19,7 +19,7 @@ jobs: - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.39.0 + toolchain: stable profile: minimal default: true - name: Set up Node.js for generating code @@ -32,7 +32,6 @@ jobs: npm install node node_modules/ts-node/dist/bin.js attrs.ts node node_modules/ts-node/dist/bin.js entities.ts - node node_modules/ts-node/dist/bin.js patterns.ts - name: Set up Node.js for benching uses: actions/setup-node@master with: diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index 395a9bb..8f279c2 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -39,7 +39,7 @@ jobs: - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.39.0 + toolchain: stable profile: minimal default: true - name: Build CLI diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 3e5ece5..d9e9514 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.39.0 + toolchain: stable profile: minimal default: true - name: Build Java native library diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index fd99939..13cf8f1 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -35,7 +35,7 @@ jobs: - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.39.0 + toolchain: stable profile: minimal default: true - name: Build native module diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 3bd14e3..3026b4b 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -65,7 +65,7 @@ jobs: - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.39.0 + toolchain: stable profile: minimal default: true - name: Build Ruby native library