Skip to content

Commit

Permalink
Expose scancode for SDL based keys (#5)
Browse files Browse the repository at this point in the history
* Add scancode to SDL based keys

* Remove GH token from CI
  • Loading branch information
ctreffs authored Nov 2, 2021
1 parent a3a675d commit 3312756
Show file tree
Hide file tree
Showing 6 changed files with 518 additions and 527 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,6 @@ jobs:
steps:
- name: Checkout
uses: actions/[email protected]
with:
token: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}

- name: Setup private access
run: |
git config --global credential.helper ""
git config --global --add credential.helper store
echo "https://x-access-token:${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}@github.com" >> ~/.git-credentials
git config --global url."https://github.com/".insteadof [email protected]:

- name: Restore APT cache
uses: actions/[email protected]
Expand Down Expand Up @@ -60,8 +49,6 @@ jobs:
- name: Test
run: make test
env:
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}

- name: Upload test artifacts
if: failure()
Expand All @@ -74,8 +61,6 @@ jobs:
- name: Build Release
run: make build-release
env:
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}

- name: Upload build artifacts
if: failure()
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,8 @@ jobs:
xcode: ["13.0"]
if: contains( github.event.pull_request.labels.*.name, 'ci-macOS') || contains( github.event.pull_request.labels.*.name, 'ci-all')
steps:
- name: Add access token to keychain
env:
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}
run: |
echo "\
protocol=https
host=github.com
username=Personal Access Token
password=$GITHUB_TOKEN" | git credential-osxkeychain store
- name: Checkout
uses: actions/[email protected]
with:
token: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}

- name: Restore cached Homebrew dependencies
uses: actions/[email protected]
Expand Down Expand Up @@ -62,7 +48,6 @@ jobs:
run: make test
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}
FRB_ENABLE_GRAPHICS_VULKAN: 0 # disable Vulkan on macOS CI until setup is smoothed out.

- name: Upload test artifacts
Expand All @@ -78,7 +63,6 @@ jobs:
run: make build-release
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }}
FRB_ENABLE_GRAPHICS_VULKAN: 0 # disable Vulkan on macOS CI until setup is smoothed out.

- name: Upload build artifacts
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Inject GH token into config
run: sed -i 's/GITHUB_TOKEN/${{ secrets.GITHUB_TOKEN }}/g' .github/workflows/mlc_config.json

- name: markdown-link-check
uses: gaurav-nelson/[email protected]
with:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
"urls": [
"https://github.com"
],
"headers": {
"Authorization": "Bearer GITHUB_TOKEN"
}
}
]
}
Loading

0 comments on commit 3312756

Please sign in to comment.