#TIL #gitlab CI/CD 파이프라인 시작 조건을 rules로 제어
gitlab CI/CD 파이프라인 rules 설정 파라미터를 사용하면 특정 조건에만 파이프라인을 시작할 수 있다.
gitlab CI/CD 파이프라인 rules 설정 파라미터를 사용하면 특정 조건에만 파이프라인을 시작할 수 있다.
빌드 머신 저장 공간이 가득 찰 일은 없겠지? 저장 공간 FULL이 나서 빌드 몇 번 실패해보면 정신을 차린다. 너무 헤프게 쓰고 있었구나. 게다가 mac mini라 저장 공간을 바로 늘릴 수도 없다. 필요한 것만 checkout 해서 쓰자. checkout 속도가 빨라져 빌드하는...
$ find . -type f -print0 -name '*.sh' | xargs -0 dos2unix dos2unix: converting file ./hello world.sh to Unix format... dos2unix: converting file ./sub_test/h...
C:\> help for FOR /L %변수 IN (시작,단계,끝) DO 명령 [명령-매개 변수] 집합은 단계별로 증가/감소하는 시작부터 끝까지의 일련의 숫자입니다. 따라서 (1,1,5)는 1 2 3 4 5를 나타내며 (5,-1,1)은 5 4 3 2 1을 나...
cat << EOF > /tmp/yourfilehere These contents will be written to the file. This line is indented. EOF
$ command -v emacs /usr/local/bin/emacs $ echo $? 0 $ command -v vim $ echo $? 1
$ docker run \ > --name mysql-temp \ > -e MYSQL_ROOT_PASSWORD=supersecret \ > -d \ > --rm \ > -p 3310:3306 ...
:%s/foo/<c-r><c-w>/g Replace each occurrence of ’foo’ with the word under the cursor. means that you press Ctrl-R then Ctrl-W The word u...
$ git add sample.sh $ git update-index --chmod=+x sample.sh
$ echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.bashrc
iex> pool_config = %{name: "Auth"} iex> String.to_atom("#{pool_config[:name]}Supervisor") :AuthSupervisor
fileFormatVersion: 2 guid: de9a32f15f2628044842629a83d3d974 timeCreated: 1442592418 licenseType: Free MonoImporter: serializedVersion: 2 defaultReferences:...
$ docker run \ --name gerrit-mysql \ --volumes-from=gerrit-data \ -e MYSQL_ROOT_PASSWORD=123456 \ -e MYSQL_DATABASE=reviewdb \ -e MYSQL_USER=gerrit2 \ -e MYS...
defmodule Ticket do @enforce_keys [:origin, :destination, :price] defstruct @enforce_keys end
$ git archive --format=tar origin/master \ | gzip -9c \ | ssh USER@SERVER "mkdir -p TARGET_DIR; tar --directory=TARGET_DIR -xvzf -"
$ cat test.csv header1,header2,header3 1,2,3 2,3,1 3,1,2 $ sed -i.bak -e "1s/[^,]/x/g” test.csv $ cat test.csv xxxxxxx,xxxxxxx,xxxxxxx 1,2,3 2,3,1 3,1,2
배포에 SVN을 사용한다. 단순히 복사해서 커밋한다면 삭제한 파일 반영이 안 된다. 삭제된 파일을 반영해야 한다.
FortiClient를 설치했더니 로그인할 때마다 시작한다. 가끔 쓰는데, 계속 떠 있으니 내 노트북이 더러워지는 느낌이다.
iex> :ets.new(:test, [:named_table]) :test iex> :ets.insert(:test, {:key1, :value1}) true iex> :ets.insert(:test, {:key2, :value2}) true iex> :et...