-
Notifications
You must be signed in to change notification settings - Fork 42
40 lines (39 loc) · 1.29 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Nightly Test
# Run the nightly tests at at 6 AM UTC
on:
schedule:
- cron: "0 6 * * *"
jobs:
docker:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-build-x-${{ github.sha }}
restore-keys: |
${{ runner.os }}-build-x-
- name: Build
uses: docker/build-push-action@v6.7.0
with:
push: false
load: true
tags: oittaa/gcp-storage-emulator:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Docker container up
run: docker run -d --rm -p 8080:8080 --name gcp-storage-emulator oittaa/gcp-storage-emulator
- name: Wait 10 seconds
run: sleep 10
- name: Check running containers
run: docker ps -a
- name: Check the container reachability
run: curl -s --retry 10 --retry-connrefused http://localhost:8080/
- name: Check Docker logs
run: docker logs gcp-storage-emulator
- name: Docker container down
run: docker stop gcp-storage-emulator