mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 11:37:02 +08:00
Dict Xiong
ff8ac21424
* update.sh: fetch will prune * log: use hostname directly * refactor log.py to logger.sh (#31) * logger.sh: refactor log.py to bash script * update.sh use beacon; ci test beacon * install.sh: install dep first * install.sh: DFS_UPDATED_RET=85 * more beacon; use stderr * remove py3 dep * install.sh: remove py3 * install.sh: -s|--secure * async log; beacon add sys.login * update use sync beacon * fix ci minor bug; macos: uuidgen/e2fsprogs * logger.sh: not need to use uuid5 * bug fix * dfs err_return * common.sh: post_log and post_beacon will check #args * bug fix * zshrc: fix locale when C.UTF-8 not exists * WIP: combine install -a and tools/ scripts * finish combination; get_os_name; macos.sh * test.ci: now all use -a to install deps * bug fix * bug fix; ci: install.sh run with -x * install.sh: bug fix that re-run install.sh after updated needs orgin args * format Co-authored-by: xiongdian.me <xiongdian.me@bytedance.com>
119 lines
2.7 KiB
YAML
119 lines
2.7 KiB
YAML
name: test
|
|
on:
|
|
push: ~
|
|
workflow_dispatch: ~
|
|
jobs:
|
|
test-ubuntu:
|
|
name: test on ubuntu
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: install dfs
|
|
run: |
|
|
rev=`git rev-parse HEAD`
|
|
pwd
|
|
set -x
|
|
./install.sh -adl
|
|
test `git rev-parse HEAD` = "$rev"
|
|
|
|
- name: antigen build
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
echo $SHELL
|
|
antigen list
|
|
|
|
- name: run tests and reset
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
source tools/test.zsh
|
|
antigen reset
|
|
rm -rf $ANTIGEN $HOME/.antigen
|
|
./install.sh -dl
|
|
|
|
- name: antigen build with DFS_NO_WALL
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
env:
|
|
DFS_NO_WALL: 1
|
|
run: |
|
|
echo $SHELL
|
|
antigen list
|
|
|
|
- name: run tests
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: source tools/test.zsh
|
|
|
|
test-macos:
|
|
name: test on macos
|
|
runs-on: macos-12
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: install dfs
|
|
run: |
|
|
rev=`git rev-parse HEAD`
|
|
pwd
|
|
set -x
|
|
./install.sh -adl
|
|
test `git rev-parse HEAD` = "$rev"
|
|
|
|
- name: antigen build
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
echo $SHELL
|
|
antigen list
|
|
|
|
- name: run tests and reset
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
source tools/test.zsh
|
|
antigen reset
|
|
rm -rf $ANTIGEN $HOME/.antigen
|
|
./install.sh -dl
|
|
|
|
- name: antigen build with DFS_NO_WALL
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
env:
|
|
DFS_NO_WALL: 1
|
|
run: |
|
|
echo $SHELL
|
|
antigen list
|
|
|
|
- name: run tests
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: source tools/test.zsh
|
|
|
|
test-autodep:
|
|
name: test of auto-install dependencies
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: remove dependencies
|
|
run: |
|
|
sudo apt-get -y remove curl vim python3
|
|
|
|
- name: checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: install dfs
|
|
run: |
|
|
rev=`git rev-parse HEAD`
|
|
set -x
|
|
./install.sh -dal
|
|
test `git rev-parse HEAD` = "$rev"
|
|
|
|
- name: antigen build with DFS_NO_WALL
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
env:
|
|
DFS_NO_WALL: 1
|
|
run: |
|
|
echo $SHELL
|
|
antigen list
|