Skip to content
Merged
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
8 changes: 1 addition & 7 deletions .github/workflows/rust-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,7 @@ jobs:
targets: ${{ matrix.rust_target }}
- name: Install sccache
if: env.SCCACHE_AWS_SECRET != ''
uses: IronCoreLabs/rust-install@v0.1.2
with:
crate: sccache
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ env.TOOL_CACHE_SECRET_KEY }}
os: ${{ join(matrix.os) }}
version: latest
uses: taiki-e/install-action@sccache
- name: Setup sccache env variables
if: env.SCCACHE_AWS_SECRET != ''
run: |
Expand Down
24 changes: 3 additions & 21 deletions .github/workflows/rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,7 @@ jobs:
targets: ${{ matrix.rust_target }}
- name: Install sccache
if: env.SCCACHE_AWS_SECRET != ''
uses: IronCoreLabs/rust-install@v0.1.2
with:
crate: sccache
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ secrets.TOOL_CACHE_SECRET_KEY }}
os: ubuntu-24.04
version: latest
uses: taiki-e/install-action@sccache
- name: Setup sccache env variables
if: env.SCCACHE_AWS_SECRET != ''
run: |
Expand Down Expand Up @@ -178,13 +172,7 @@ jobs:
- uses: IronCoreLabs/rust-toolchain@v1
- name: Install sccache
if: env.SCCACHE_AWS_SECRET != ''
uses: IronCoreLabs/rust-install@v0.1.2
with:
crate: sccache
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ env.TOOL_CACHE_SECRET_KEY }}
os: ubuntu-24.04
version: latest
uses: taiki-e/install-action@sccache
- name: Setup sccache env variables
if: env.SCCACHE_AWS_SECRET != ''
run: |
Expand Down Expand Up @@ -242,13 +230,7 @@ jobs:
- run: ${{inputs.cargo_command_env_vars}} cargo fmt --all -- --check
working-directory: ${{ needs.vars.outputs.rust_root }}
- name: Install cargo-sort
uses: IronCoreLabs/rust-install@v0.1.2
with:
crate: cargo-sort
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ secrets.TOOL_CACHE_SECRET_KEY }}
os: ubuntu-24.04
version: latest
uses: taiki-e/install-action@cargo-sort
- run: |
if grep -q '\[workspace]' Cargo.toml ; then
${{inputs.cargo_command_env_vars}} cargo sort --check --workspace
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/rust-daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,7 @@ jobs:
targets: ${{ matrix.rust_target }}
- name: Install sccache
if: env.SCCACHE_AWS_SECRET != ''
uses: IronCoreLabs/rust-install@v0.1.2
with:
crate: sccache
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ env.TOOL_CACHE_SECRET_KEY }}
os: ubuntu-24.04
version: latest
uses: taiki-e/install-action@sccache
- name: Setup sccache env variables
if: env.SCCACHE_AWS_SECRET != ''
run: |
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/scala-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,9 @@ jobs:
path: sql-smelter
- name: Install refinery
if: ${{ inputs.smelter_required }}
uses: IronCoreLabs/rust-install@v0.1.2
uses: taiki-e/cache-cargo-install-action@v2
with:
crate: refinery_cli
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ secrets.TOOL_CACHE_SECRET_KEY }}
os: ubuntu-24.04
tool: refinery_cli
- name: Install additional dependencies
if: ${{ inputs.additional_system_deps != '' }}
run: |
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/typescript-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,9 @@ jobs:
path: sql-smelter
- name: Install refinery
if: ${{ inputs.smelter_required }}
uses: IronCoreLabs/rust-install@v0.1.2
uses: taiki-e/cache-cargo-install-action@v2
with:
crate: refinery_cli
accesskey: ${{ vars.TOOL_CACHE_ACCESS_KEY_ID }}
secretkey: ${{ secrets.TOOL_CACHE_SECRET_KEY }}
os: ubuntu-24.04
tool: refinery_cli
- name: Decrypt ironhide files
uses: IronCoreLabs/ironhide-actions/decrypt@v3
if: ${{ inputs.files_to_decrypt != '' }}
Expand Down
Loading