Compare commits

...

2 Commits

Author SHA1 Message Date
91b1aeb1be Merge pull request 'more stupid workarounds' (#17) from more-workarounds into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #17
2024-02-13 01:04:23 +01:00
89ea97dd6a more stupid workarounds
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
An oversight of the original """fix""". Cargo needs to resolve DNS to pull dependencies.
2024-02-13 01:01:35 +01:00

View File

@ -48,6 +48,9 @@ steps:
commands: commands:
- rustc --version - rustc --version
- cargo --version - cargo --version
# Stupid workarounds, for stupid problems
- echo "nameserver 1.1.1.1" >> /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
- cargo build --verbose --all - cargo build --verbose --all
- name: test [debug] - name: test [debug]
@ -55,6 +58,9 @@ steps:
commands: commands:
- rustc --version - rustc --version
- cargo --version - cargo --version
# Stupid workarounds, for stupid problems
- echo "nameserver 1.1.1.1" >> /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
- cargo test --verbose --all - cargo test --verbose --all
- name: lint-clippy [debug] - name: lint-clippy [debug]
@ -107,4 +113,7 @@ steps:
commands: commands:
- rustc --version - rustc --version
- cargo --version - cargo --version
# Stupid workarounds, for stupid problems
- echo "nameserver 1.1.1.1" >> /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
- cargo test --verbose --all --release - cargo test --verbose --all --release