forked from CIROH-UA/ngen-datastream
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 996 Bytes
/
test_stream.yaml
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
name: Datastream Test
on:
push:
branches:
- main
jobs:
fedora-job:
runs-on: ubuntu-latest
container: fedora:35
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo dnf -y update && \
dnf install findutils && \
dnf clean all
sudo dnf -y install dnf-plugins-core && \
sudo dnf config-manager --add-repo=https://download.docker.com/linux/fedora/docker-ce.repo && \
sudo dnf install docker-ce docker-ce-cli containerd.io && \
sudo systemctl start docker && \
sudo systemctl enable docker && \
sudo docker run hello-world
$(pwd)/scripts/install.sh
aws configure set aws_access_key_id ${{ secrets.aws_access_key_id }}
aws configure set aws_secret_access_key ${{ secrets.aws_secret_access_key }}
- name: Test datastream
run: |
$(pwd)/tests/scripts/test_stream.sh -d $(pwd)