Skip to content

Commit

Permalink
Update test_stream.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanLaserGit authored May 22, 2024
1 parent a234450 commit 1a13ec4
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/test_stream.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,23 @@ jobs:

- name: Install dependencies
run: |
sudo dnf -y update
sudo dnf -y install findutils
sudo dnf -y clean all
sudo dnf -y update && \
dnf install findutils && \
dnf install find && \
dnf clean all
find --version
sudo dnf -y install dnf-plugins-core &&
sudo dnf -y config-manager --add-repo=https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf -y install docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
sudo systemctl enable docker
sudo docker run hello-world
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Install datastream
run:
$(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 }}
Expand Down

0 comments on commit 1a13ec4

Please sign in to comment.