From 429393b0dd19becc8f175fee1d2e437bc893481a Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 2 May 2025 15:18:33 +0200 Subject: Move from github to sourcehut MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .github/workflows/ci.yml | 62 ------------------------------------------------ install.sh | 2 +- 2 files changed, 1 insertion(+), 63 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 19ee8e5..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: ci - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - emacs: - runs-on: ubuntu-latest - continue-on-error: ${{ matrix.emacs_version == 'snapshot' }} - - strategy: - fail-fast: false - matrix: - emacs_version: - - 28.1 - - 28.2 - - 29.1 - - 29.2 - - 29.3 - - 29.4 - - 'snapshot' - - steps: - - uses: actions/checkout@v2 - - - uses: purcell/setup-emacs@master - with: - version: ${{ matrix.emacs_version }} - - - name: Install dependencies for Doom - run: | - sudo apt-get install ripgrep - - - name: Install some other dependencies - run: | - mkdir -p $HOME/src/github.com/mssola - cd $HOME/src/github.com/mssola - git clone https://github.com/mssola/soria.git - - - name: Install Doom Emacs - run: | - git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.config/emacs - ~/.config/emacs/bin/doom install --no-config --no-env --no-fonts - - - name: Sync - run: | - cp -r $(realpath .config/doom) $HOME/.config/doom - ~/.config/emacs/bin/doom sync - - - name: Check Doom installation - run: | - ~/.config/emacs/bin/doom doctor - test -z "$(~/.config/emacs/bin/doom doctor | grep 'errors!')" - - - name: Try to start Emacs - run: | - echo "Attempting startup..." - ${EMACS:=emacs} -nw -Q --batch --load $HOME/.config/emacs/early-init.el - echo "Startup successful" diff --git a/install.sh b/install.sh index 8476371..34ba3a5 100755 --- a/install.sh +++ b/install.sh @@ -30,7 +30,7 @@ done ## # Main procedure: link as many files as possible. -ary=(.git .github .gitignore LICENSE *.gitignore *.yml *.org +ary=(.git .gitignore LICENSE *.gitignore *.yml *.org install.sh .config .gnupg README.md) ignore="-name ${ary[0]}" for i in "${ary[@]:1:${#ary[@]}}"; do -- cgit v1.2.3