quit using vcpkg on archlinux #205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ctbench testing | |
on: [push] | |
jobs: | |
archlinux-testing: | |
runs-on: self-hosted | |
container: | |
image: archlinux/archlinux | |
options: -u root | |
steps: | |
- name: Fetch current branch | |
uses: actions/checkout@v3 | |
- name: Compiling and running ctbench tests on Archlinux | |
uses: ./.github/actions/run-tests-archlinux | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: archlinux-build-result | |
path: example/build/ | |
ubuntu-testing: | |
runs-on: self-hosted | |
container: | |
image: ubuntu:23.04 | |
options: -u root | |
steps: | |
- name: Fetch current branch | |
uses: actions/checkout@v3 | |
- name: Compiling and running ctbench tests on Ubuntu | |
uses: ./.github/actions/run-tests-ubuntu | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ubuntu-build-result | |
path: example/build/ |