Skip to content

Commit

Permalink
Update CI for FreeBSD 13.4, OpenBSD 7.5 and NetBSD 9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rapperskull committed Sep 16, 2024
1 parent 1563302 commit 1596f94
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- name: FreeBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
wget -nv http://ftp.plusline.de/FreeBSD/releases/amd64/13.2-RELEASE/base.txz && \
wget -nv http://ftp.plusline.de/FreeBSD/releases/amd64/13.4-RELEASE/base.txz && \
mkdir -p $SYSROOT_PATH && cd $SYSROOT_PATH && \
tar -xf /tmp/base.txz ./lib/ ./usr/lib/ ./usr/include/ && \
cd $SYSROOT_PATH/usr/lib && \
Expand Down Expand Up @@ -162,12 +162,12 @@ jobs:
- name: OpenBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
wget -nv https://cdn.openbsd.org/pub/OpenBSD/7.4/amd64/base74.tgz \
https://cdn.openbsd.org/pub/OpenBSD/7.4/amd64/comp74.tgz && \
wget -nv https://cdn.openbsd.org/pub/OpenBSD/7.5/amd64/base75.tgz \
https://cdn.openbsd.org/pub/OpenBSD/7.5/amd64/comp75.tgz && \
mkdir -p $SYSROOT_PATH && cd $SYSROOT_PATH && \
tar -xf /tmp/base74.tgz ./usr/lib/ ./usr/include/ && \
tar -xf /tmp/comp74.tgz ./usr/lib/ ./usr/include/ && \
rm -f /tmp/base74.tgz /tmp/comp74.tgz
tar -xf /tmp/base75.tgz ./usr/lib/ ./usr/include/ && \
tar -xf /tmp/comp75.tgz ./usr/lib/ ./usr/include/ && \
rm -f /tmp/base75.tgz /tmp/comp75.tgz
- name: CMake generate
run: |
mkdir build && cd build
Expand Down Expand Up @@ -196,8 +196,8 @@ jobs:
- name: NetBSD toolchain setup
run: |
sudo apt-get -qq install clang lld && cd /tmp && \
wget -nv https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/amd64/binary/sets/base.tar.xz \
https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/amd64/binary/sets/comp.tar.xz && \
wget -nv https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.4/amd64/binary/sets/base.tar.xz \
https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.4/amd64/binary/sets/comp.tar.xz && \
mkdir -p $SYSROOT_PATH && cd $SYSROOT_PATH && \
tar -xf /tmp/base.tar.xz ./usr/lib/ ./usr/include/ && \
tar -xf /tmp/comp.tar.xz ./usr/lib/ ./usr/include/ && \
Expand Down

0 comments on commit 1596f94

Please sign in to comment.