wezterm/.cirrus.yml
Wez Furlong 4b14b33f26
ci: update to newer freebsd
CI has been failing a bit there with a weird libcurl symbol
resolution problems.

Let's try a newer release of freebsd and see if it works itself out.
2023-04-17 20:21:52 -07:00

20 lines
620 B
YAML

freebsd_instance:
image: freebsd-13-2-release-amd64
cpu: 4
memory: 8G
task:
name: freebsd-13
stateful: false
only_if: "changesInclude('**.toml', '**.rs', '.gitmodules', '.cirrus.yml', 'get-deps', 'Cargo.lock')"
setup_script:
- pkg install -y bash
- curl https://sh.rustup.rs -sSf > /tmp/rustup.sh
- chmod +x /tmp/rustup.sh
- RUSTUP_IO_THREADS=1 /tmp/rustup.sh -y -q
- env PATH=$HOME/.cargo/bin:$PATH bash get-deps
- mkdir -p /run/sshd
test_script:
- env PATH=$HOME/.cargo/bin:$PATH cargo build --all --release
- env PATH=$HOME/.cargo/bin:$PATH cargo test --all --release