Skip to content

Commit 79e4dca

Browse files
committed
Update circleci
1 parent 656ec79 commit 79e4dca

File tree

1 file changed

+8
-18
lines changed

1 file changed

+8
-18
lines changed

.circleci/config.yml

+8-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
version: 2.0
22

33
jobs:
4-
ubuntu2404:
5-
docker:
6-
- image: ubuntu:24.04
7-
steps:
8-
- checkout
9-
- run: apt update && DEBIAN_FRONTEND=noninteractive apt -y install git gcc clang cmake libgcrypt20-dev libgtk-3-dev libzip-dev libjansson-dev libpng-dev libzbar-dev libprotobuf-c-dev libsecret-1-dev uuid-dev libprotobuf-dev libqrencode-dev
10-
- run: chmod +x .ci/install_deps.sh && .ci/install_deps.sh
11-
- run: chmod +x .ci/install_otpclient.sh && .ci/install_otpclient.sh
12-
13-
ubuntuLatestRolling:
4+
archlinux:
145
docker:
15-
- image: ubuntu:rolling
6+
- image: archlinux:latest
167
steps:
178
- checkout
18-
- run: apt update && DEBIAN_FRONTEND=noninteractive apt -y install git gcc clang cmake libgcrypt20-dev libgtk-3-dev libzip-dev libjansson-dev libpng-dev libzbar-dev libprotobuf-c-dev libsecret-1-dev uuid-dev libprotobuf-dev libqrencode-dev
9+
- run: pacman -Syu --noconfirm && pacman -S --noconfirm pkg-config git gtk3 libgcrypt zbar gcc clang cmake make libzip jansson libpng protobuf-c libsecret util-linux-libs qrencode
1910
- run: chmod +x .ci/install_deps.sh && .ci/install_deps.sh
2011
- run: chmod +x .ci/install_otpclient.sh && .ci/install_otpclient.sh
2112

@@ -37,21 +28,20 @@ jobs:
3728
- run: chmod +x .ci/install_deps.sh && .ci/install_deps.sh
3829
- run: chmod +x .ci/install_otpclient.sh && .ci/install_otpclient.sh
3930

40-
archlinux:
31+
ubuntu2404:
4132
docker:
42-
- image: archlinux:latest
33+
- image: ubuntu:24.04
4334
steps:
4435
- checkout
45-
- run: pacman -Syu --noconfirm && pacman -S --noconfirm pkg-config git gtk3 libgcrypt zbar gcc clang cmake make libzip jansson libpng protobuf-c libsecret util-linux-libs qrencode
36+
- run: apt update && DEBIAN_FRONTEND=noninteractive apt -y install git gcc clang cmake libgcrypt20-dev libgtk-3-dev libzip-dev libjansson-dev libpng-dev libzbar-dev libprotobuf-c-dev libsecret-1-dev uuid-dev libprotobuf-dev libqrencode-dev
4637
- run: chmod +x .ci/install_deps.sh && .ci/install_deps.sh
4738
- run: chmod +x .ci/install_otpclient.sh && .ci/install_otpclient.sh
4839

4940
workflows:
5041
version: 2
5142
build:
5243
jobs:
53-
- ubuntu2404
54-
- ubuntuLatestRolling
44+
- archlinux
5545
- debianLatestStable
5646
- fedoraLatestStable
57-
- archlinux
47+
- ubuntu2404

0 commit comments

Comments
 (0)