Skip to content

Commit

Permalink
Fix runner_group_label
Browse files Browse the repository at this point in the history
  • Loading branch information
waliid committed Nov 6, 2024
1 parent 08b6593 commit 17327b8
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on:
labels: [tart, macos]
outputs:
runner_group_label: |
${{ steps.runner-group-label.outputs.runner_group_label }}
runner_group_label: >
"${{ steps.runner-group-label.outputs.runner_group_label }}"
steps:
- name: Clone macos-ci-setup repository
run: |
Expand All @@ -37,40 +37,40 @@ jobs:
./create-vm-for-project.sh ${{ env.vm_name }} ${{ env.vm_image }}
./clone-repo-in-vm.sh ${{ env.vm_name }} ${{ github.ref_name }} \
"https://${{ env.macos_ci_setup_token }}\
@github.com/${{ github.repository }}.git"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"brew install --quiet \
swiftlint shellcheck markdownlint-cli yamllint ffmpeg"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"rbenv install --skip-existing 3.3.5"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"echo 'export PATH=\"$HOME/.rbenv/bin:$PATH\"' >> ~/.zshrc"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"rbenv init - >> ~/.zshrc"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"rbenv global 3.3.5"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"sudo gem install bundler -v 2.5.22"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"curl --location \
https://github.com/shaka-project/shaka-packager\
/releases/download/v3.2.0/packager-osx-arm64 -o \
/opt/homebrew/bin/shaka-packager"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"chmod a+x /opt/homebrew/bin/shaka-packager"
./run-vm-shell-command.sh ${{ env.vm_name }} \
"source ~/.zshrc"
# ./clone-repo-in-vm.sh ${{ env.vm_name }} ${{ github.ref_name }} \
# "https://${{ env.macos_ci_setup_token }}\
# @github.com/${{ github.repository }}.git"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "brew install --quiet \
# swiftlint shellcheck markdownlint-cli yamllint ffmpeg"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "rbenv install --skip-existing 3.3.5"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "echo 'export PATH=\"$HOME/.rbenv/bin:$PATH\"' >> ~/.zshrc"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "rbenv init - >> ~/.zshrc"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "rbenv global 3.3.5"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "sudo gem install bundler -v 2.5.22"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "curl --location \
# https://github.com/shaka-project/shaka-packager\
# /releases/download/v3.2.0/packager-osx-arm64 -o \
# /opt/homebrew/bin/shaka-packager"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "chmod a+x /opt/homebrew/bin/shaka-packager"
#
# ./run-vm-shell-command.sh ${{ env.vm_name }} \
# "source ~/.zshrc"

setup-project:
needs: install-tools
Expand Down

0 comments on commit 17327b8

Please sign in to comment.