Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci #92

Merged
merged 4 commits into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 44 additions & 24 deletions .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,65 @@
name: Build/Test/Deploy
on:
push:
branches-ignore:
- gh-pages
workflow_dispatch:
pull_request:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
name: Build and Deploy
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- name: Checkout
uses: actions/checkout@v4
with:
node-version: 16
- name: Checkout Repository
uses: actions/checkout@v3
# with:
# persist-credentials: false
- name: Install
run: npm ci
submodules: 'recursive'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
cache-dependency-path: ./yarn.lock
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.0
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master'}}
run: yarn run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
token: ${{ secrets.ACCESS_TOKEN }}
folder: .vuepress/dist/
clean: true
path: .vuepress/dist/
deploy:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
cache-dependency-path: ./yarn.lock
- name: Install
run: npm ci
run: yarn install --frozen-lockfile
- name: Lint
run: npm run lint-ci
run: yarn run lint-ci
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ _book/
node_modules/
.vscode/
.DS_Store
yarn.lock
package-lock.json
**/*.swp
1 change: 1 addition & 0 deletions Universal/dmar-methods/manual.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Patching DMAR Table: Manual

What we will be doing is removing the Reserved Memory Regions to allow this table to load without conflicts in macOS - which is necessary for the following hardware devices:

* Intel I225 based Ethernet Controllers
* Aquantia Ethernet Controllers
* Some WiFi devices
Expand Down
2 changes: 1 addition & 1 deletion Universal/dmar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ This is for any CPU that supports `VT-d` or Intel Virtualization Technology for

To create this ACPI Table, there is currently 1 method available.

* [Manual](/Universal/dmar-methods/manual.md)
* [Manual](/Universal/dmar-methods/manual.md)
1 change: 0 additions & 1 deletion Universal/plug-methods/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,3 @@ Original | Cleaned Up
Once you're done making your SSDT, either head to the next page to finish the rest of the SSDTs or head here if you're ready to wrap up:

* [**Cleanup**](/cleanup.md)

Loading