Update .gitea/workflows/docker-test.yml
All checks were successful
Windows Build / build (push) Successful in 2s
All checks were successful
Windows Build / build (push) Successful in 2s
This commit is contained in:
parent
da5146e487
commit
bef2cb8a12
@ -1,15 +1,21 @@
|
||||
name: Build, test and deploy
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
"Build, test and deploy":
|
||||
strategy:
|
||||
fail-fast: false
|
||||
runs-on: docker
|
||||
defaults:
|
||||
run:
|
||||
shell: pwsh
|
||||
build:
|
||||
runs-on: windows-host # Must match runner's label in config.yaml
|
||||
container:
|
||||
image: mcr.microsoft.com/windows/servercore:ltsc2019
|
||||
options: --isolation=process --entrypoint cmd /c "timeout 5" # Test container startup
|
||||
steps:
|
||||
- name: Identify trigger
|
||||
run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
- uses: actions/checkout@v3
|
||||
- name: Debug container
|
||||
run: echo "Container is alive!"
|
||||
|
||||
- name: Install Rust
|
||||
if: success()
|
||||
run: |
|
||||
curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
||||
.\rustup-init.exe -y --default-toolchain stable
|
||||
refreshenv
|
||||
rustup component add rust-src
|
||||
|
||||
- name: Build
|
||||
if: success()
|
||||
run: cargo build --release
|
||||
Loading…
x
Reference in New Issue
Block a user