Skip to content

Commit

Permalink
Add colima back
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Oct 19, 2024
1 parent f337883 commit 7277364
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * 0'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel

jobs:
# This workflow contains a single job called "build"
build:
Expand All @@ -41,18 +41,18 @@ jobs:
uname -a
uname -m
- name: Setup docker and docker-compose (missing on MacOS)
- name: Setup docker, docker-compose, and colima (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker docker-compose
brew install docker docker-compose colima
# Link the Docker Compose v2 plugin so it's understood by the docker CLI
mkdir -p ~/.docker/cli-plugins
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
colima start
- name: try doing docker build
shell: bash -l {0}
run: |
docker build -t emission-server .
docker build -t emission-server .

0 comments on commit 7277364

Please sign in to comment.