Skip to content

Commit

Permalink
Merge pull request #148 from ibpsa/issue147_dockerCompose
Browse files Browse the repository at this point in the history
Install Docker Buildx and Docker Compose in runner
  • Loading branch information
javiarrobas committed Sep 12, 2024
2 parents 0d6ff91 + 65e160c commit e736b5d
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: CI of BOPTEST-Gym using GitHub Actions
on: [push]
on:
push:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
jobs:
test-local:
runs-on: ubuntu-latest
Expand All @@ -15,6 +20,12 @@ jobs:
- name: List of files in the repository
run: |
ls ${{ github.workspace }}
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Test local version
run: make test-local-in-container
test-vectorized:
Expand All @@ -31,6 +42,12 @@ jobs:
- name: List of files in the repository
run: |
ls ${{ github.workspace }}
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Test vectorized environment
run: make test-vectorized-in-container
test-service:
Expand Down

0 comments on commit e736b5d

Please sign in to comment.