-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose scancode for SDL based keys (#5)
* Add scancode to SDL based keys * Remove GH token from CI
- Loading branch information
Showing
6 changed files
with
518 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -60,8 +49,6 @@ jobs: | |
- name: Test | ||
run: make test | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_FIREBLADE_ACCESS_TOKEN }} | ||
|
||
- name: Upload test artifacts | ||
if: failure() | ||
|
@@ -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() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,6 @@ | |
"urls": [ | ||
"https://github.com" | ||
], | ||
"headers": { | ||
"Authorization": "Bearer GITHUB_TOKEN" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.