Skip to content

Commit

Permalink
workflow: Remove rust install
Browse files Browse the repository at this point in the history
- Remove the rust toolchain install from the workflow
now it's no longer needed.
> [!NOTE]
> We need a follow up PR to remove rust from versions.yaml
> separately due to the pull_request_target issues
- Remove unused envs

Signed-off-by: stevenhorsman <[email protected]>
  • Loading branch information
stevenhorsman committed Oct 22, 2024
1 parent 10aad5a commit aab207c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/e2e_libvirt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ jobs:
- name: Read properties from versions.yaml
run: |
sudo snap install yq
echo "KBS_REPO=$(yq -e '.git.kbs.url' versions.yaml)" >> "$GITHUB_ENV"
echo "KBS_VERSION=$(yq -e '.git.kbs.reference' versions.yaml)" >> "$GITHUB_ENV"
echo "RUST_VERSION=$(yq -e '.tools.rust' versions.yaml)" >> "$GITHUB_ENV"
go_version="$(yq '.tools.golang' versions.yaml)"
[ -n "$go_version" ]
echo "GO_VERSION=${go_version}" >> "$GITHUB_ENV"
Expand Down Expand Up @@ -90,13 +87,6 @@ jobs:
# For debugging
cat libvirt.properties
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
override: true
profile: minimal

- uses: oras-project/setup-oras@v1
with:
version: ${{ env.ORAS_VERSION }}
Expand Down

0 comments on commit aab207c

Please sign in to comment.