Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rsonghuster committed Nov 1, 2023
1 parent f6c4ded commit 4b86b1e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci_with_docker_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-docker@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y wget curl docker.io
- name: Start Docker daemon
run: sudo service docker start
- uses: actions/setup-node@v2
with:
node-version: 14
Expand All @@ -29,10 +34,6 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 8
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y wget curl
- name: install s
run: |
sudo npm i @serverless-devs/s3 -g
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/ci_with_docker_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-docker@v2
- name: Install dependencies
run: |
brew update
brew install wget curl
brew install --cask docker
- name: Start Docker daemon
run: open --background -a Docker
- uses: actions/setup-node@v2
with:
node-version: 14
Expand All @@ -29,9 +35,6 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 8
- name: Install dependencies
run: |
brew install wget curl
- name: install s
run: |
npm i @serverless-devs/s3 -g
Expand Down

0 comments on commit 4b86b1e

Please sign in to comment.