Skip to content

Commit

Permalink
add an arch test
Browse files Browse the repository at this point in the history
  • Loading branch information
ebknudsen committed Sep 9, 2024
1 parent b86e77e commit 9bde0bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_from_source_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- { os: Debian12, container: "debian:12", CC: gcc-12, CXX: g++-12, python: '3.12' }
- { os: Debian12, container: "debian:12", CC: gcc-12, CXX: g++-12, python: '3.11' }
- { os: Debian12, container: "debian:12", CC: gcc-12, CXX: g++-12, python: '3.10' }
- { os: Arch, container: "archlinux:latest", CC: gcc, CXX: g++, python: '3' }
# - { os: macos-11, CC: clang, CXX: clang++, python: "3.10" }
# - { os: macos-12, CC: clang, CXX: clang++, python: "3.11" }
# - { os: macos-13, CC: clang, CXX: clang++, python: "3.11" }
Expand All @@ -39,6 +40,10 @@ jobs:
apt-get dist-upgrade
apt-get install git build-essential sudo
if: ${{ matrix.os == 'Debian11' || matrix.os == 'Debian12' }}
- name: bootstrap arch
run: |
pacman -Syu --noconfirm gcc python>${{ matrix.python }} cmake git
if: ${{ matrix.os == 'Arch' }}
- name: checkout_main_repo
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 9bde0bf

Please sign in to comment.