mirror of
https://github.com/BastilleBSD/templates.git
synced 2025-12-10 17:00:30 +01:00
* test 1 * test 2 * test 3 * test 4 * test 5 * test 6 * test 7 * test 8 * test 9 * test 10 * test 11 * test 12 * test 13 * test 14 * test 15 * test 16 * test 17 * test 18 * test 19 * test 20 * test 21 * test 22 * test 23 * test 24 * test 25 * test 26 * test 27 * test 28 * test 29 * test 30 * test 31 * test 32 * test 33 * test 34 * test 35 * test 36 * test 37 * test 38 * test 39 * test 40 * test 41 * test 42 * test 43 * test 44 * test 45 * test 46 * test 47 * test 48 * test 49 * test 50 * test 51 * test 52 * test 53 * test 54 * test 55 * test 56 * test 57 * test 58 * test 59 * test 60 * test 61 * test 62 * test 63 * test 64 --------- Co-authored-by: Barry McCormick <bmccormick@debianbeast.maildragon.com>
23 lines
607 B
YAML
23 lines
607 B
YAML
# .cirrus.yml:
|
|
compute_engine_instance:
|
|
# Image list available via
|
|
# gcloud compute images list --project freebsd-org-cloud-dev --no-standard-images
|
|
platform: freebsd
|
|
image_project: freebsd-org-cloud-dev
|
|
image: freebsd-13-2-release-amd64
|
|
cpu: 1
|
|
memory: 2G
|
|
disk: 10
|
|
|
|
|
|
|
|
|
|
task:
|
|
webserver_tests:
|
|
description: Test the web server
|
|
freebsd:
|
|
- pkg install -y curl wget # Install required tools (for FreeBSD)
|
|
script:
|
|
- curl -Is http://localhost:8080/ | grep "HTTP/1.1 200 OK" # Example test with curl
|
|
- wget --spider http://localhost:8080/ # Example test with wget
|