-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (41 loc) · 1.2 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: CI
on:
push:
schedule:
# Daily at 8:11
- cron: "11 8 * * *"
concurrency:
group: "dotfiles"
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
- name: Uninstall Conflicting GitHub Runner Packages
run: brew uninstall firefox
if: runner.os == 'macOS'
- name: Install packages
run: brew bundle install
if: runner.os == 'macOS'
continue-on-error: true
- name: Install packages
run: sudo apt-get install -y zsh
if: runner.os == 'Linux'
- name: Bootstrap
run: python ./install
- name: Converge venvs
run: python -m pip install venvs && venvs converge
env:
C_INCLUDE_PATH: /usr/local/include:/usr/local/opt/openssl@1.1/include
LIBRARY_PATH: /usr/local/lib:/usr/local/opt/openssl@1.1/lib
PKG_INCLUDE_PATH: /usr/local/opt/openssl@1.1/lib/pkgconfig
with_gmp: no