Skip to content

Commit

Permalink
[DEVOPS-1814] Fix SM CLI for ubuntu 20.04 (#613)
Browse files Browse the repository at this point in the history
## Type of change

<!-- (mark with an `X`) -->

```
- [x] Bug fix
- [ ] New feature development
- [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc)
- [x] Build/deploy pipeline (DevOps)
- [ ] Other
```

## Objective

https://bitwarden.atlassian.net/browse/DEVOPS-1814
https://bitwarden.atlassian.net/browse/SM-1113

<!--Describe what the purpose of this PR is. For example: what bug
you're fixing or what new feature you're adding-->

## Code changes

<!--Explain the changes you've made to each file or major component.
This should help the reviewer understand your changes-->
<!--Also refer to any related changes or PRs in other repositories-->

- **.github/workflows/build-cli.yml:** Change runner for linux CLI build
for ubuntu-20.04

## Before you submit

- Please add **unit tests** where it makes sense to do so
  • Loading branch information
michalchecinski authored Feb 15, 2024
1 parent cfced90 commit c03bcf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
- os: windows-2022
target: aarch64-pc-windows-msvc

- os: ubuntu-22.04
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu

- os: ubuntu-22.04
- os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
steps:
- name: Checkout repo
Expand Down

0 comments on commit c03bcf5

Please sign in to comment.