From 391adb1816b96b17dbecc7180a90063aa712a909 Mon Sep 17 00:00:00 2001 From: kayomn Date: Sun, 7 Jul 2024 01:03:39 +0200 Subject: [PATCH] Remove duplicate environment variables from CI --- .drone.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1baca82..bbde8b0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,11 +2,12 @@ kind: pipeline type: docker name: continuous integration +environment: + ZIG_VERSION: 0.13.0 + steps: - name: setup image: ubuntu:latest - environment: - ZIG_VERSION: 0.13.0 commands: - apt-get update - apt-get install -y xz-utils wget libsdl2-dev glslang-tools spirv-tools @@ -17,16 +18,12 @@ steps: - name: build image: ubuntu:latest - environment: - ZIG_VERSION: 0.13.0 commands: - export PATH=$PATH:$(pwd)/zig-linux-x86_64-$${ZIG_VERSION} - zig build - name: test image: ubuntu:latest - environment: - ZIG_VERSION: 0.13.0 commands: - export PATH=$PATH:$(pwd)/zig-linux-x86_64-$${ZIG_VERSION} - zig build test \ No newline at end of file