Skip to content

use M1 mac runner in CI #557

use M1 mac runner in CI

use M1 mac runner in CI #557

Workflow file for this run

name: Ubuntu
on:
push:
branches: [master]
paths-ignore:
- "README.md"
- "Makefile"
- "Dockerfile"
- "install/macos/**"
- ".chezmoiscripts/macos/**"
- "dot_tmux.conf.d/os/macos.conf"
- "tests/install/macos/**"
pull_request:
branches: [master]
paths-ignore:
- "README.md"
- "Makefile"
- "Dockerfile"
- "install/macos/**"
- ".chezmoiscripts/macos/**"
- "dot_tmux.conf.d/os/macos.conf"
- "tests/install/macos/**"
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
strategy:
matrix:
system: [server, client]
runs-on: ubuntu-latest
steps:
- name: Setup dotfiles
env:
EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }}
SYSTEM: ${{ matrix.system }}
DOTFILES_DEBUG: 1
EVENT_NAME: ${{ github.event_name }}
run: |
if [ "${EVENT_NAME}" == "push" ]; then
BRANCH_NAME="${{ github.ref_name }}"
elif [ "${EVENT_NAME}" == "pull_request" ]; then
BRANCH_NAME="${{ github.head_ref }}"
fi
export BRANCH_NAME
URL="https://raw.githubusercontent.com/shunk031/dotfiles/${BRANCH_NAME}/setup.sh"
echo "Download setup.sh from ${URL}"
printf '${EMAIL_ADDRESS}\n${SYSTEM}\n' | bash -c "$(wget -qO - $URL)"
# │ │
# │ └─ Simulate inputting an system arcitecture into the config.
# └─ Simulate inputting an email address into the config.