Skip to content

Commit a9825a2

Browse files
committed
test31
1 parent 6db65d8 commit a9825a2

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

.github/workflows/test-on-push.yml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -150,34 +150,12 @@ jobs:
150150
151151
test-04-snapshot:
152152
needs: test-main
153-
runs-on: macos-15
153+
runs-on: ubuntu-latest
154154
steps:
155155
- name: Check out repository code
156156
uses: actions/checkout@v2
157157

158158

159-
- name: Install Docker + Colima
160-
run: |
161-
brew update
162-
brew install qemu colima docker
163-
brew uninstall --ignore-dependencies lima
164-
curl https://raw.githubusercontent.com/Homebrew/homebrew-core/45464b6c4788a80be3f131ab5e2a4468cdfa960c/Formula/l/lima.rb > lima.rb
165-
brew install lima.rb
166-
LIMACTL_PATH=$(brew --prefix)/bin/limactl
167-
sudo curl -L -o $LIMACTL_PATH https://github.com/mikekazakov/lima-nohvf/raw/master/limactl
168-
sudo chmod +x $LIMACTL_PATH
169-
colima start --network-address --arch arm64 --vm-type=qemu
170-
mkdir -p ~/.docker/cli-plugins
171-
brew install docker-compose
172-
ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
173-
174-
175-
- name: Install dependencies
176-
run: |
177-
brew install shellcheck yamllint
178-
npm install -g npm@latest
179-
npm install
180-
181159
- name: Build Fablo
182160
run: |
183161
shellcheck --version && \
@@ -198,10 +176,33 @@ jobs:
198176
199177
test-05-v3:
200178
needs: test-main
201-
runs-on: ubuntu-latest
179+
runs-on: macos-15
202180
steps:
203181
- name: Check out repository code
204182
uses: actions/checkout@v2
183+
184+
- name: Install Docker + Colima
185+
run: |
186+
brew update
187+
brew install qemu colima docker
188+
brew uninstall --ignore-dependencies lima
189+
curl https://raw.githubusercontent.com/Homebrew/homebrew-core/45464b6c4788a80be3f131ab5e2a4468cdfa960c/Formula/l/lima.rb > lima.rb
190+
brew install lima.rb
191+
LIMACTL_PATH=$(brew --prefix)/bin/limactl
192+
sudo curl -L -o $LIMACTL_PATH https://github.com/mikekazakov/lima-nohvf/raw/master/limactl
193+
sudo chmod +x $LIMACTL_PATH
194+
colima start --network-address --arch arm64 --vm-type=qemu
195+
mkdir -p ~/.docker/cli-plugins
196+
brew install docker-compose
197+
ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
198+
199+
200+
- name: Install dependencies
201+
run: |
202+
brew install shellcheck yamllint
203+
npm install -g npm@latest
204+
npm install
205+
205206
206207
- name: Build Fablo
207208
run: |

0 commit comments

Comments
 (0)