Skip to content

Commit

Permalink
ci: switch from Catch v1 to Catch v2 on Ubuntu 22.04 builds (GHA)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jun 29, 2023
1 parent 19454c0 commit 7a1b198
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Debian packages
run: |
sudo apt-get update
sudo apt-get install -y catch clang-${{ matrix.version }} cmake git libcurl4-gnutls-dev libmariadb-dev pkg-config
sudo apt-get install -y catch2 clang-${{ matrix.version }} cmake git libcurl4-gnutls-dev libmariadb-dev pkg-config
- name: Start MySQL database
run: sudo systemctl start mysql.service
- name: Show MySQL version information
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Debian packages
run: |
sudo apt-get update
sudo apt-get install -y catch cmake g++-${{ matrix.version }} git libcurl4-gnutls-dev libmariadb-dev pkg-config
sudo apt-get install -y catch2 cmake g++-${{ matrix.version }} git libcurl4-gnutls-dev libmariadb-dev pkg-config
- name: Start MySQL database
run: sudo systemctl start mysql.service
- name: Show MySQL version information
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Debian packages
run: |
sudo apt-get update
sudo apt-get install -y catch cmake g++-12 git libcurl4-gnutls-dev libmariadb-dev pkg-config
sudo apt-get install -y catch2 cmake g++-12 git libcurl4-gnutls-dev libmariadb-dev pkg-config
- name: Start MySQL database
run: sudo systemctl start mysql.service
- name: Show MySQL version information
Expand Down

0 comments on commit 7a1b198

Please sign in to comment.