-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: DragonBillow <[email protected]>
- Loading branch information
Showing
2 changed files
with
21 additions
and
11 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 |
---|---|---|
|
@@ -13,10 +13,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
submodules: true | ||
fetch-depth: "0" | ||
- uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: make fonts-noto-cjk fonts-noto-cjk-extra | ||
|
@@ -40,11 +36,4 @@ jobs: | |
export RUST_LOG=DEBUG | ||
nix develop --impure --command bash -c "cargo run -- config.toml -o example/vscode_plugins.nix" | ||
cat example/vscode_plugins.nix | ||
# nix develop --impure --command bash -c "cd example && nix flake update" | ||
nix develop --impure --command bash -c "cd example && nix develop --build" | ||
# - uses: EndBug/add-and-commit@v9 # You can change this to use a specific version. | ||
# with: | ||
# author_name: DragonBillow | ||
# author_email: [email protected] | ||
# commit: --signoff | ||
# message: "feat(vscode): Update nix lock." |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: "nightly" | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
schedule: | ||
- cron: "0 5 * * 1-5" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
nightly_build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly | ||
- run: cargo +nightly build |