chore: don't need fzf-tab #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Install platforms | |
on: | |
push: | |
paths: | |
- 'install.sh' | |
- '.github/workflows/build.yaml' | |
env: | |
CONTAINER_HOME: '/github/home/work/configs/configs' | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checking out our code | |
uses: actions/checkout@master | |
with: | |
path: github.com/configs | |
- name: Run installer | |
run: | | |
cd github.com/configs | |
./install.sh --all | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checking out our code | |
uses: actions/checkout@master | |
with: | |
path: github.com/configs | |
- name: Run installer | |
run: | | |
cd github.com/configs | |
./install.sh --all | |
### Some OS installations need to be run in containers | |
alpine: | |
runs-on: ubuntu-latest | |
container: | |
image: alpine:3.15 | |
volumes: | |
# mount our configs into the correct path in the container | |
- /home/runner/work/configs/configs/:/github/home/work/configs/configs | |
steps: | |
- name: Checking out our code | |
uses: actions/checkout@master | |
with: | |
path: github.com/configs | |
- name: Run installer | |
env: | |
CI: true | |
run: | | |
apk add --no-cache bash | |
cd ${CONTAINER_HOME}/github.com/configs | |
./install.sh --all | |
archlinux: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:base | |
volumes: | |
# mount our configs into the correct path in the container | |
- /home/runner/work/configs/configs/:/github/home/work/configs/configs | |
steps: | |
- name: Checking out our code | |
uses: actions/checkout@master | |
with: | |
path: github.com/configs | |
- name: Run installer | |
env: | |
CI: true | |
run: | | |
cd /github/home/work/configs/configs/github.com/configs | |
./install.sh --all | |
debian: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:bullseye | |
volumes: | |
# mount our configs into the correct path in the container | |
- /home/runner/work/configs/configs/:/github/home/work/configs/configs | |
steps: | |
- name: Checking out our code | |
uses: actions/checkout@master | |
with: | |
path: github.com/configs | |
- name: Run installer | |
env: | |
CI: true | |
run: | | |
cd /github/home/work/configs/configs/github.com/configs | |
./install.sh --all |